Let us set some global options for all code chunks in this document.
knitr::opts_chunk$set(
message = FALSE, # Disable messages printed by R code chunks
warning = FALSE, # Disable warnings printed by R code chunks
echo = TRUE, # Show R code within code chunks in output
include = TRUE, # Include both R code and its results in output
eval = TRUE, # Evaluate R code chunks
cache = FALSE, # Enable caching of R code chunks for faster rendering
fig.align = "center",
out.width = "100%",
retina = 2,
error = TRUE,
collapse = TRUE
)
rm(list = ls())
set.seed(1982)Let us now load some required libraries.
# Load required libraries
# inla.upgrade(testing = TRUE)
# remotes::install_github("inlabru-org/inlabru", ref = "devel")
# remotes::install_github("davidbolin/rspde", ref = "devel")
# remotes::install_github("davidbolin/metricgraph", ref = "devel")
library(INLA)
library(inlabru)
library(rSPDE)
library(MetricGraph)
library(plotly)
library(dplyr)
library(sf)
library(here)Function standarize() below is later used to standardize
the covariate SpeedLimit.
standardize <- function(x) {return((x - mean(x)) / sd(x))}To keep track of the changes, we provide summaries of every new created object. Those summaries can be accessed by pressing the Show buttons below
We load the graph object sf_graph (which only contains
weights) and the data (already graph-processed).
load(here("Graph_objects/graph_construction_28_03_2024partialtomtomwhichlonglatsf.RData"))
load(here("Data_files/data_day7142128_hour13_with_no_consecutive_zeros_partialtomtom_graph_processed.RData"))
data_on_graph = data_on_graph %>%
dplyr::select(-datetime)summary(sf_graph)
## A metric graph object with:
##
## Vertices:
## Total: 4017
## Degree 2: 1821; Degree 3: 180; Degree 4: 1402; Degree 5: 94; Degree 6: 367;
## Degree 7: 36; Degree 8: 116; Degree 12: 1;
## With incompatible directions: 0
##
## Edges:
## Total: 6827
## Lengths:
## Min: 0.002834658 ; Max: 0.2743201 ; Total: 311.1441
## Weights:
## Columns: Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## That are circles: 0
##
## Graph units:
## Vertices unit: degrees ; Lengths unit: km
##
## Longitude and Latitude coordinates: TRUE
## Which spatial package: sf
## CRS: EPSG:4326
##
## Some characteristics of the graph:
## Connected: TRUE
## Has loops: FALSE
## Has multiple edges: TRUE
## Is a tree: FALSE
## Distance consistent: TRUE
## Has Euclidean edges: FALSE
##
## Computed quantities inside the graph:
## Laplacian: FALSE ; Geodesic distances: TRUE
## Resistance distances: FALSE ; Finite element matrices: FALSE
##
## Mesh: The graph has no mesh!
##
## Data: The graph has no data!
##
## Tolerances:
## vertex-vertex: 0.001
## vertex-edge: 0.001
## edge-edge: 0
summary(data_on_graph)
## ID speed day .distance_to_graph
## Min. :5701 Min. : 0.000 Min. :1.000 Min. :0.000000
## 1st Qu.:6571 1st Qu.: 1.609 1st Qu.:2.000 1st Qu.:0.001655
## Median :6687 Median :14.484 Median :3.000 Median :0.003552
## Mean :7106 Mean :15.142 Mean :2.556 Mean :0.004470
## 3rd Qu.:7281 3rd Qu.:24.140 3rd Qu.:4.000 3rd Qu.:0.006152
## Max. :8969 Max. :99.779 Max. :4.000 Max. :0.019991
## .edge_number .distance_on_edge .group .coord_x
## Min. : 1 Min. :0.0000 Length:39575 Min. :-122.4
## 1st Qu.:1412 1st Qu.:0.2726 Class :character 1st Qu.:-122.4
## Median :2879 Median :0.5149 Mode :character Median :-122.4
## Mean :3090 Mean :0.5090 Mean :-122.4
## 3rd Qu.:4753 3rd Qu.:0.7502 3rd Qu.:-122.4
## Max. :6826 Max. :1.0000 Max. :-122.4
## .coord_y
## Min. :37.77
## 1st Qu.:37.78
## Median :37.79
## Mean :37.79
## 3rd Qu.:37.79
## Max. :37.81The following commands remove zero speed observations that are 1m away from the graph, and after that, they remove any speed observations that are 3m away from the graph.
to_remove = data_on_graph %>%
filter(speed == 0, .distance_to_graph > 0.001)
data_on_graph = setdiff(data_on_graph, to_remove) %>%
filter(.distance_to_graph <= 0.003)summary(to_remove)
## ID speed day .distance_to_graph .edge_number
## Min. :5701 Min. :0 Min. :1.000 Min. :0.001001 Min. : 1
## 1st Qu.:6574 1st Qu.:0 1st Qu.:2.000 1st Qu.:0.002757 1st Qu.:1376
## Median :6688 Median :0 Median :3.000 Median :0.004561 Median :2788
## Mean :7078 Mean :0 Mean :2.556 Mean :0.005453 Mean :3031
## 3rd Qu.:7277 3rd Qu.:0 3rd Qu.:4.000 3rd Qu.:0.007129 3rd Qu.:4715
## Max. :8969 Max. :0 Max. :4.000 Max. :0.019988 Max. :6812
## .distance_on_edge .group .coord_x .coord_y
## Min. :0.0000 Length:8597 Min. :-122.4 Min. :37.77
## 1st Qu.:0.3078 Class :character 1st Qu.:-122.4 1st Qu.:37.78
## Median :0.5301 Mode :character Median :-122.4 Median :37.79
## Mean :0.5177 Mean :-122.4 Mean :37.79
## 3rd Qu.:0.7362 3rd Qu.:-122.4 3rd Qu.:37.79
## Max. :1.0000 Max. :-122.4 Max. :37.81
summary(data_on_graph)
## ID speed day .distance_to_graph
## Min. :5701 Min. : 0.000 Min. :1.00 Min. :0.0000000
## 1st Qu.:6565 1st Qu.: 9.656 1st Qu.:2.00 1st Qu.:0.0005833
## Median :6683 Median :19.312 Median :3.00 Median :0.0012618
## Mean :7115 Mean :19.385 Mean :2.55 Mean :0.0013512
## 3rd Qu.:7286 3rd Qu.:27.359 3rd Qu.:4.00 3rd Qu.:0.0021077
## Max. :8969 Max. :99.779 Max. :4.00 Max. :0.0029999
## .edge_number .distance_on_edge .group .coord_x
## Min. : 1 Min. :0.0000 Length:14534 Min. :-122.4
## 1st Qu.:1376 1st Qu.:0.2551 Class :character 1st Qu.:-122.4
## Median :2956 Median :0.5139 Mode :character Median :-122.4
## Mean :3130 Mean :0.5099 Mean :-122.4
## 3rd Qu.:4803 3rd Qu.:0.7697 3rd Qu.:-122.4
## Max. :6817 Max. :1.0000 Max. :-122.4
## .coord_y
## Min. :37.77
## 1st Qu.:37.78
## Median :37.79
## Mean :37.79
## 3rd Qu.:37.79
## Max. :37.81We add data to the graph.
sf_graph$add_observations(data = data_on_graph,
group = "day",
normalized = TRUE,
clear_obs = TRUE)sf_graph$get_data()
## # A tibble: 14,534 × 9
## ID speed day .distance_to_graph .coord_x .coord_y .edge_number
## <int> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 6666 0 1 0.00100 -122. 37.8 1
## 2 8941 12.9 1 0.00230 -122. 37.8 4
## 3 8768 24.1 1 0.00233 -122. 37.8 6
## 4 8929 32.2 1 0.00151 -122. 37.8 6
## 5 8965 0 1 0.000647 -122. 37.8 9
## 6 8965 19.3 1 0.00170 -122. 37.8 14
## 7 8954 22.5 1 0.00103 -122. 37.8 14
## 8 8774 19.3 1 0.00279 -122. 37.8 14
## 9 6655 30.6 1 0.00208 -122. 37.8 18
## 10 6677 14.5 1 0.000436 -122. 37.8 20
## # ℹ 14,524 more rows
## # ℹ 2 more variables: .distance_on_edge <dbl>, .group <chr>
summary(sf_graph)
## A metric graph object with:
##
## Vertices:
## Total: 4017
## Degree 2: 1821; Degree 3: 180; Degree 4: 1402; Degree 5: 94; Degree 6: 367;
## Degree 7: 36; Degree 8: 116; Degree 12: 1;
## With incompatible directions: 0
##
## Edges:
## Total: 6827
## Lengths:
## Min: 0.002834658 ; Max: 0.2743201 ; Total: 311.1441
## Weights:
## Columns: Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## That are circles: 0
##
## Graph units:
## Vertices unit: degrees ; Lengths unit: km
##
## Longitude and Latitude coordinates: TRUE
## Which spatial package: sf
## CRS: EPSG:4326
##
## Some characteristics of the graph:
## Connected: TRUE
## Has loops: FALSE
## Has multiple edges: TRUE
## Is a tree: FALSE
## Distance consistent: TRUE
## Has Euclidean edges: FALSE
##
## Computed quantities inside the graph:
## Laplacian: FALSE ; Geodesic distances: TRUE
## Resistance distances: FALSE ; Finite element matrices: FALSE
##
## Mesh: The graph has no mesh!
##
## Data:
## Columns: ID speed day
## Groups: .group
##
## Tolerances:
## vertex-vertex: 0.001
## vertex-edge: 0.001
## edge-edge: 0We get the values of the weights at data locations. This essentially gives us covariates from the weights.
sf_graph$edgeweight_to_data(data_loc = TRUE)sf_graph$get_data()
## # A tibble: 57,108 × 54
## ID speed day .distance_to_graph Length FRC SpeedLimit StreetName
## <int> <dbl> <dbl> <dbl> <dbl> <chr> <dbl> <chr>
## 1 NA NA NA NA 0.0361 5 40 Harrison St
## 2 NA NA NA NA 0.0361 5 40 Harrison St
## 3 NA NA NA NA 0.0361 5 40 Harrison St
## 4 6666 0 1 0.00100 0.0361 5 40 Harrison St
## 5 NA NA NA NA 0.0361 5 40 Harrison St
## 6 NA NA NA NA 0.0361 5 40 Harrison St
## 7 NA NA NA NA 0.0361 5 40 Harrison St
## 8 NA NA NA NA 0.0361 5 40 Harrison St
## 9 NA NA NA NA 0.0361 5 40 Harrison St
## 10 8941 12.9 1 0.00230 0.112 6 35 Rhode Island St
## # ℹ 57,098 more rows
## # ℹ 46 more variables: harmonicAverageSpeed <dbl>, medianSpeed <dbl>,
## # averageSpeed <dbl>, sampleSize <int>, averageTravelTime <dbl>,
## # medianTravelTime <dbl>, travelTimeRatio <dbl>, List_Number <int>,
## # `5percentile` <int>, `10percentile` <int>, `15percentile` <int>,
## # `20percentile` <int>, `25percentile` <int>, `30percentile` <int>,
## # `35percentile` <int>, `40percentile` <int>, `45percentile` <int>, …
summary(sf_graph)
## A metric graph object with:
##
## Vertices:
## Total: 4017
## Degree 2: 1821; Degree 3: 180; Degree 4: 1402; Degree 5: 94; Degree 6: 367;
## Degree 7: 36; Degree 8: 116; Degree 12: 1;
## With incompatible directions: 0
##
## Edges:
## Total: 6827
## Lengths:
## Min: 0.002834658 ; Max: 0.2743201 ; Total: 311.1441
## Weights:
## Columns: Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## That are circles: 0
##
## Graph units:
## Vertices unit: degrees ; Lengths unit: km
##
## Longitude and Latitude coordinates: TRUE
## Which spatial package: sf
## CRS: EPSG:4326
##
## Some characteristics of the graph:
## Connected: TRUE
## Has loops: FALSE
## Has multiple edges: TRUE
## Is a tree: FALSE
## Distance consistent: TRUE
## Has Euclidean edges: FALSE
##
## Computed quantities inside the graph:
## Laplacian: FALSE ; Geodesic distances: TRUE
## Resistance distances: FALSE ; Finite element matrices: FALSE
##
## Mesh: The graph has no mesh!
##
## Data:
## Columns: ID speed day Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## Groups: .group
##
## Tolerances:
## vertex-vertex: 0.001
## vertex-edge: 0.001
## edge-edge: 0When running
sf_graph$edgeweight_to_data(data_loc = TRUE), some
NA values are created (because the data is grouped). We
remove them below. We also standardize the SpeedLimit
covariate.
data = sf_graph$get_data() %>%
drop_na(-StreetName) %>% # this drops all rows with at least one NA value but without taking into account StreetName
mutate(across(c("SpeedLimit"), ~standardize(.))) %>%
dplyr::select(speed, SpeedLimit)summary(data)
## speed SpeedLimit .group .edge_number
## Min. : 0.000 Min. :-2.3743 Length:14534 Min. : 1
## 1st Qu.: 9.656 1st Qu.:-0.1006 Class :character 1st Qu.:1376
## Median :19.312 Median :-0.1006 Mode :character Median :2956
## Mean :19.385 Mean : 0.0000 Mean :3130
## 3rd Qu.:27.359 3rd Qu.:-0.1006 3rd Qu.:4803
## Max. :99.779 Max. : 6.6173 Max. :6817
## .distance_on_edge .coord_x .coord_y
## Min. :0.0000 Min. :-122.4 Min. :37.77
## 1st Qu.:0.2551 1st Qu.:-122.4 1st Qu.:37.78
## Median :0.5139 Median :-122.4 Median :37.79
## Mean :0.5099 Mean :-122.4 Mean :37.79
## 3rd Qu.:0.7697 3rd Qu.:-122.4 3rd Qu.:37.79
## Max. :1.0000 Max. :-122.4 Max. :37.81We add the data again but now with the new standardized
SpeedLimit covariate.
sf_graph$add_observations(data = data,
group = "day",
normalized = TRUE,
clear_obs = TRUE)sf_graph$get_data()
## # A tibble: 14,534 × 7
## speed SpeedLimit .coord_x .coord_y .edge_number .distance_on_edge .group
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <chr>
## 1 0 -0.101 -122. 37.8 1 0.437 1
## 2 12.9 -0.617 -122. 37.8 4 0.144 1
## 3 24.1 -0.617 -122. 37.8 6 0.252 1
## 4 32.2 -0.617 -122. 37.8 6 0.658 1
## 5 0 -0.927 -122. 37.8 9 0.601 1
## 6 19.3 -0.927 -122. 37.8 14 0.0247 1
## 7 22.5 -0.927 -122. 37.8 14 0.362 1
## 8 19.3 -0.927 -122. 37.8 14 0.832 1
## 9 30.6 -0.927 -122. 37.8 18 0.358 1
## 10 14.5 -0.927 -122. 37.8 20 0.309 1
## # ℹ 14,524 more rows
summary(sf_graph)
## A metric graph object with:
##
## Vertices:
## Total: 4017
## Degree 2: 1821; Degree 3: 180; Degree 4: 1402; Degree 5: 94; Degree 6: 367;
## Degree 7: 36; Degree 8: 116; Degree 12: 1;
## With incompatible directions: 0
##
## Edges:
## Total: 6827
## Lengths:
## Min: 0.002834658 ; Max: 0.2743201 ; Total: 311.1441
## Weights:
## Columns: Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## That are circles: 0
##
## Graph units:
## Vertices unit: degrees ; Lengths unit: km
##
## Longitude and Latitude coordinates: TRUE
## Which spatial package: sf
## CRS: EPSG:4326
##
## Some characteristics of the graph:
## Connected: TRUE
## Has loops: FALSE
## Has multiple edges: TRUE
## Is a tree: FALSE
## Distance consistent: TRUE
## Has Euclidean edges: FALSE
##
## Computed quantities inside the graph:
## Laplacian: FALSE ; Geodesic distances: TRUE
## Resistance distances: FALSE ; Finite element matrices: FALSE
##
## Mesh: The graph has no mesh!
##
## Data:
## Columns: speed SpeedLimit
## Groups: .group
##
## Tolerances:
## vertex-vertex: 0.001
## vertex-edge: 0.001
## edge-edge: 0We build a mesh.
h = 0.05
sf_graph$build_mesh(h = h)summary(sf_graph)
## A metric graph object with:
##
## Vertices:
## Total: 4017
## Degree 2: 1821; Degree 3: 180; Degree 4: 1402; Degree 5: 94; Degree 6: 367;
## Degree 7: 36; Degree 8: 116; Degree 12: 1;
## With incompatible directions: 0
##
## Edges:
## Total: 6827
## Lengths:
## Min: 0.002834658 ; Max: 0.2743201 ; Total: 311.1441
## Weights:
## Columns: Length FRC SpeedLimit StreetName harmonicAverageSpeed medianSpeed averageSpeed sampleSize averageTravelTime medianTravelTime travelTimeRatio List_Number 5percentile 10percentile 15percentile 20percentile 25percentile 30percentile 35percentile 40percentile 45percentile 50percentile 55percentile 60percentile 65percentile 70percentile 75percentile 80percentile 85percentile 90percentile 95percentile road_type class_6 class_5 class_4 class_0 class_3 class_1 upto1 upto3 upto4 upto5 upto6 density density_per_hour
## That are circles: 0
##
## Graph units:
## Vertices unit: degrees ; Lengths unit: km
##
## Longitude and Latitude coordinates: TRUE
## Which spatial package: sf
## CRS: EPSG:4326
##
## Some characteristics of the graph:
## Connected: TRUE
## Has loops: FALSE
## Has multiple edges: TRUE
## Is a tree: FALSE
## Distance consistent: TRUE
## Has Euclidean edges: FALSE
##
## Computed quantities inside the graph:
## Laplacian: FALSE ; Geodesic distances: TRUE
## Resistance distances: FALSE ; Finite element matrices: FALSE
##
## Mesh:
## Max h_e: 0.04999798 ; Min n_e: 0
##
## Data:
## Columns: speed SpeedLimit
## Groups: .group
##
## Tolerances:
## vertex-vertex: 0.001
## vertex-edge: 0.001
## edge-edge: 0We get the value of the weights at mesh locations. This will allow us
to built matrices B.sigma and B.range below.
Again,
sf_graph$edgeweight_to_data(mesh = TRUE, add = FALSE, return = TRUE)
creates repeated information (because the data is grouped). We fix that
by filtering one group. We also standardize the SpeedLimit
covariate.
mesh = sf_graph$edgeweight_to_data(mesh = TRUE,
add = FALSE,
return = TRUE) %>%
filter(.group == 1) %>%
mutate(across(c("SpeedLimit"), ~standardize(.))) %>%
dplyr:::select.data.frame(SpeedLimit)summary(mesh)
## SpeedLimit
## Min. :-1.9800
## 1st Qu.:-0.1744
## Median :-0.1744
## Mean : 0.0000
## 3rd Qu.:-0.1744
## Max. : 5.1604stat.time.ini <- Sys.time()
################################################################################
################################# STATIONARY MODEL #############################
################################################################################
rspde_model_stat <- rspde.metric_graph(sf_graph,
parameterization = "matern",
nu = 0.5)str(rspde_model_stat)
## List of 21
## $ f :List of 3
## ..$ model : chr "cgeneric"
## ..$ n : int 7169
## ..$ cgeneric:List of 5
## .. ..$ model: chr "inla_cgeneric_rspde_stat_int_model"
## .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. ..$ n : int 7169
## .. ..$ debug: logi FALSE
## .. ..$ data :List of 5
## .. .. ..$ ints :List of 5
## .. .. .. ..$ n : int 7169
## .. .. .. ..$ debug : int 0
## .. .. .. ..$ m_alpha : int 1
## .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. ..$ doubles :List of 4
## .. .. .. ..$ matrices_less : num [1:32048] 0.0797 0 0 0.1564 0 ...
## .. .. .. ..$ theta.prior.mean: num [1:2] 0 0.223
## .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. ..$ nu : num 0.5
## .. .. ..$ characters:List of 4
## .. .. .. ..$ model : chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. ..$ parameterization : chr "matern"
## .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. ..$ matrices :List of 1
## .. .. .. ..$ theta.prior.prec: num [1:6] 2 2 0.1 0 0 0.1
## .. .. ..$ smatrices : list()
## .. ..- attr(*, "class")= chr "inla.cgeneric"
## $ cgeneric_type : chr "int_alpha"
## $ nu : num 0.5
## $ theta.prior.mean : num [1:2] 0 0.223
## $ prior.nu :List of 4
## ..$ loglocation: num -5e-06
## ..$ mean : num 1
## ..$ prec : num 3
## ..$ logscale : num 1
## $ theta.prior.prec : num [1:2, 1:2] 0.1 0 0 0.1
## $ start.nu : num 0.5
## $ integer.nu : logi TRUE
## $ start.theta : num [1:2] 0 0.223
## $ stationary : logi TRUE
## $ rspde.order : num 2
## $ dim : num 1
## $ est_nu : logi FALSE
## $ nu.upper.bound : num 2
## $ prior.nu.dist : chr "lognormal"
## $ debug : logi FALSE
## $ type.rational.approx: chr "chebfun"
## $ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## $ fem_mesh :List of 4
## ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. ..@ factors : list()
## ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. ..@ factors : list()
## ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. ..@ factors : list()
## ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. ..@ factors : list()
## $ parameterization : chr "matern"
## $ n.spde : int 7169
## - attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"data_rspde_bru_stat <- graph_data_rspde(rspde_model_stat,
repl = ".all",
loc_name = "loc")str(data_rspde_bru_stat)
## List of 4
## $ data :List of 8
## ..$ speed : num [1:14534] 0 12.9 24.1 32.2 0 ...
## ..$ SpeedLimit : num [1:14534] -0.101 -0.617 -0.617 -0.617 -0.927 ...
## ..$ .coord_x : num [1:14534] -122 -122 -122 -122 -122 ...
## ..$ .coord_y : num [1:14534] 37.8 37.8 37.8 37.8 37.8 ...
## ..$ .edge_number : num [1:14534] 1 4 6 6 9 14 14 14 18 20 ...
## ..$ .distance_on_edge: num [1:14534] 0.437 0.144 0.252 0.658 0.601 ...
## ..$ .group : chr [1:14534] "1" "1" "1" "1" ...
## ..$ loc : num [1:14534, 1:2] 1 4 6 6 9 14 14 14 18 20 ...
## ..- attr(*, "class")= chr [1:2] "metric_graph_data" "list"
## $ index:List of 3
## ..$ field : int [1:28676] 1 2 3 4 5 6 7 8 9 10 ...
## ..$ field.group: int [1:28676] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ field.repl : int [1:28676] 1 1 1 1 1 1 1 1 1 1 ...
## ..- attr(*, "class")= chr [1:2] "inla_rspde_index" "list"
## ..- attr(*, "rspde.order")= num 0
## ..- attr(*, "integer_nu")= logi TRUE
## ..- attr(*, "n.mesh")= int 7169
## ..- attr(*, "name")= chr "field"
## ..- attr(*, "n.group")= int 1
## ..- attr(*, "n.repl")= int 4
## $ repl : chr [1:14534] "1" "1" "1" "1" ...
## $ basis:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. ..@ i : int [1:29068] 0 555 1905 1906 0 1050 1471 1472 1473 1905 ...
## .. ..@ p : int [1:28677] 0 4 11 11 11 11 12 13 15 15 ...
## .. ..@ Dim : int [1:2] 14534 28676
## .. ..@ Dimnames:List of 2
## .. .. ..$ : NULL
## .. .. ..$ : NULL
## .. ..@ x : num [1:29068] 0.563 0.0495 0.3595 0.7935 0.437 ...
## .. ..@ factors : list()cmp_stat = speed ~ -1 +
Intercept(1) +
SpeedLimit +
field(loc, model = rspde_model_stat,
replicate = data_rspde_bru_stat[["repl"]])
rspde_fit_stat <-
bru(cmp_stat,
data = data_rspde_bru_stat[["data"]],
family = "gaussian",
options = list(verbose = FALSE)
)str(rspde_fit_stat)
## List of 55
## $ names.fixed : chr [1:2] "Intercept" "SpeedLimit"
## $ summary.fixed :'data.frame': 2 obs. of 7 variables:
## ..$ mean : num [1:2] 20.88 3.06
## ..$ sd : num [1:2] 0.374 0.28
## ..$ 0.025quant: num [1:2] 20.16 2.52
## ..$ 0.5quant : num [1:2] 20.88 3.06
## ..$ 0.975quant: num [1:2] 21.6 3.6
## ..$ mode : num [1:2] 20.88 3.06
## ..$ kld : num [1:2] 8.51e-08 4.36e-07
## $ marginals.fixed :List of 2
## ..$ Intercept : num [1:43, 1:2] 19.2 19.5 19.7 20 20.2 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ SpeedLimit: num [1:43, 1:2] 2 2.11 2.25 2.43 2.52 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ summary.lincomb :'data.frame': 0 obs. of 0 variables
## $ marginals.lincomb : NULL
## $ size.lincomb : NULL
## $ summary.lincomb.derived :'data.frame': 0 obs. of 0 variables
## $ marginals.lincomb.derived : NULL
## $ size.lincomb.derived : NULL
## $ mlik : num [1:2, 1] -55594 -55592
## ..- attr(*, "dimnames")=List of 2
## .. ..$ : chr [1:2] "log marginal-likelihood (integration)" "log marginal-likelihood (Gaussian)"
## .. ..$ : NULL
## $ cpo :List of 3
## ..$ cpo : logi(0)
## ..$ pit : logi(0)
## ..$ failure: logi(0)
## $ gcpo :List of 5
## ..$ gcpo : NULL
## ..$ kld : NULL
## ..$ mean : NULL
## ..$ sd : NULL
## ..$ groups: NULL
## $ po :List of 1
## ..$ po: num [1:14534] 0.00814 0.03515 0.03594 0.03166 0.02282 ...
## $ waic :List of 4
## ..$ waic : num 108680
## ..$ p.eff : num 2623
## ..$ local.waic : num [1:14534] 10.69 6.99 6.88 7.56 8.94 ...
## ..$ local.p.eff: num [1:14534] 0.532 0.146 0.114 0.326 0.688 ...
## $ residuals :List of 1
## ..$ deviance.residuals: num [1:14534] -1.956 -0.737 0.69 0.932 -1.336 ...
## $ model.random : chr "CGeneric"
## $ summary.random :List of 1
## ..$ field:'data.frame': 28676 obs. of 8 variables:
## .. ..$ ID : num [1:28676] 1 2 3 4 5 6 7 8 9 10 ...
## .. ..$ mean : num [1:28676] -2.789 -3.362 -0.694 -0.328 -0.459 ...
## .. ..$ sd : num [1:28676] 5.1 3.57 7.03 7.68 8.48 ...
## .. ..$ 0.025quant: num [1:28676] -12.8 -10.4 -14.5 -15.4 -17.1 ...
## .. ..$ 0.5quant : num [1:28676] -2.785 -3.362 -0.694 -0.329 -0.459 ...
## .. ..$ 0.975quant: num [1:28676] 7.2 3.65 13.09 14.73 16.16 ...
## .. ..$ mode : num [1:28676] -2.785 -3.362 -0.694 -0.329 -0.459 ...
## .. ..$ kld : num [1:28676] 1.70e-10 1.98e-11 4.16e-13 4.45e-13 5.66e-13 ...
## $ marginals.random :List of 1
## ..$ field:List of 28676
## .. ..$ index.1 : num [1:43, 1:2] -24.7 -21.9 -18.6 -14.7 -12.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.2 : num [1:43, 1:2] -18.6 -16.7 -14.4 -11.7 -10.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.3 : num [1:43, 1:2] -30.7 -26.9 -22.5 -17.1 -14.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.4 : num [1:43, 1:2] -33.1 -28.9 -24.1 -18.2 -15.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.5 : num [1:43, 1:2] -36.7 -32.1 -26.7 -20.2 -17.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.6 : num [1:43, 1:2] -34.7 -30.8 -26.3 -20.9 -18.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.7 : num [1:43, 1:2] -25.8 -22.3 -18.3 -13.5 -11.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.8 : num [1:43, 1:2] -18.91 -16.35 -13.39 -9.79 -8.06 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.9 : num [1:43, 1:2] -38 -33.3 -27.9 -21.3 -18.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.10 : num [1:43, 1:2] -37.7 -32.9 -27.3 -20.5 -17.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.11 : num [1:43, 1:2] -43 -37.4 -30.9 -23 -19.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.12 : num [1:43, 1:2] -48 -41.7 -34.3 -25.4 -21.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.13 : num [1:43, 1:2] -26.3 -23.2 -19.6 -15.3 -13.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.14 : num [1:43, 1:2] -34.4 -30.6 -26.2 -20.9 -18.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.15 : num [1:43, 1:2] -25.3 -22.2 -18.5 -14.1 -12 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.16 : num [1:43, 1:2] -27 -23.5 -19.4 -14.5 -12.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.17 : num [1:43, 1:2] -14.83 -12.74 -10.31 -7.35 -5.94 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.18 : num [1:43, 1:2] -32.2 -27.9 -23 -17.1 -14.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.19 : num [1:43, 1:2] -23.8 -20.7 -17 -12.6 -10.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.20 : num [1:43, 1:2] -42.5 -37 -30.5 -22.7 -19 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.21 : num [1:43, 1:2] -51.2 -44.5 -36.6 -27.2 -22.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.22 : num [1:43, 1:2] -42.3 -36.6 -30 -22.1 -18.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.23 : num [1:43, 1:2] -46.6 -40.7 -33.9 -25.6 -21.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.24 : num [1:43, 1:2] -46.4 -40.5 -33.7 -25.4 -21.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.25 : num [1:43, 1:2] -26.85 -22.56 -17.58 -11.54 -8.64 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.26 : num [1:43, 1:2] -16 -13.59 -10.78 -7.38 -5.75 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.27 : num [1:43, 1:2] -45.2 -39.7 -33.2 -25.4 -21.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.28 : num [1:43, 1:2] -39.6 -34.6 -28.9 -21.9 -18.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.29 : num [1:43, 1:2] -27 -24.5 -21.6 -18.1 -16.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.30 : num [1:43, 1:2] -12.07 -9.46 -6.45 -2.78 -1.02 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.31 : num [1:43, 1:2] -41 -36.2 -30.6 -23.9 -20.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.32 : num [1:43, 1:2] -41.6 -36.4 -30.5 -23.3 -19.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.33 : num [1:43, 1:2] -48.2 -42.3 -35.5 -27.2 -23.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.34 : num [1:43, 1:2] -23.5 -20.9 -17.9 -14.3 -12.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.35 : num [1:43, 1:2] -56.1 -48.9 -40.7 -30.6 -25.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.36 : num [1:43, 1:2] -43.5 -37.9 -31.4 -23.5 -19.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.37 : num [1:43, 1:2] -57 -49.7 -41.4 -31.2 -26.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.38 : num [1:43, 1:2] -56.7 -49.5 -41.2 -31.2 -26.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.39 : num [1:43, 1:2] -52.9 -46.3 -38.6 -29.3 -24.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.40 : num [1:43, 1:2] -45.6 -40 -33.4 -25.4 -21.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.41 : num [1:43, 1:2] -50.9 -44.7 -37.5 -28.8 -24.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.42 : num [1:43, 1:2] -44.9 -39.3 -32.7 -24.7 -20.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.43 : num [1:43, 1:2] -55.9 -49.1 -41.2 -31.6 -27 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.44 : num [1:43, 1:2] -42.9 -37.3 -30.8 -23 -19.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.45 : num [1:43, 1:2] -41.3 -36.4 -30.7 -23.9 -20.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.46 : num [1:43, 1:2] -30.3 -27.9 -25.1 -21.6 -20 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.47 : num [1:43, 1:2] -32.5 -29.1 -25.3 -20.5 -18.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.48 : num [1:43, 1:2] -23.54 -20.22 -16.37 -11.7 -9.46 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.49 : num [1:43, 1:2] -13.93 -11.25 -8.14 -4.36 -2.55 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.50 : num [1:43, 1:2] -26.9 -23.1 -18.8 -13.6 -11.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.51 : num [1:43, 1:2] -15.19 -13.25 -11 -8.26 -6.94 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.52 : num [1:43, 1:2] -27.3 -25.1 -22.5 -19.3 -17.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.53 : num [1:43, 1:2] -23 -20.9 -18.5 -15.6 -14.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.54 : num [1:43, 1:2] -39.3 -35.3 -30.6 -25 -22.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.55 : num [1:43, 1:2] -46.6 -41.2 -35 -27.5 -23.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.56 : num [1:43, 1:2] -40.6 -36.6 -32 -26.4 -23.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.57 : num [1:43, 1:2] -43.1 -39.1 -34.3 -28.5 -25.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.58 : num [1:43, 1:2] -34.5 -30.9 -26.7 -21.7 -19.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.59 : num [1:43, 1:2] -33.2 -29.1 -24.3 -18.5 -15.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.60 : num [1:43, 1:2] -40.3 -35.8 -30.6 -24.3 -21.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.61 : num [1:43, 1:2] -35.3 -30.6 -25.3 -18.8 -15.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.62 : num [1:43, 1:2] -23.79 -20.36 -16.39 -11.57 -9.26 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.63 : num [1:43, 1:2] -39.1 -34.5 -29.1 -22.6 -19.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.64 : num [1:43, 1:2] -38.4 -33.7 -28.2 -21.6 -18.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.65 : num [1:43, 1:2] -33.6 -29.5 -24.8 -19.1 -16.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.66 : num [1:43, 1:2] -30 -25.5 -20.2 -13.8 -10.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.67 : num [1:43, 1:2] -7.489 -5.262 -2.678 0.461 1.967 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.68 : num [1:43, 1:2] -23.4 -21.2 -18.7 -15.6 -14.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.69 : num [1:43, 1:2] -32.9 -29.1 -24.7 -19.4 -16.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.70 : num [1:43, 1:2] -20.59 -17.73 -14.42 -10.39 -8.46 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.71 : num [1:43, 1:2] -15.89 -14.12 -12.07 -9.58 -8.38 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.72 : num [1:43, 1:2] -14.19 -12.47 -10.47 -8.04 -6.88 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.73 : num [1:43, 1:2] -30.67 -24.77 -17.94 -9.68 -5.73 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.74 : num [1:43, 1:2] 4.8 6.66 8.83 11.46 12.72 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.75 : num [1:43, 1:2] -28.7 -25.9 -22.7 -18.7 -16.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.76 : num [1:43, 1:2] -44.7 -40.4 -35.5 -29.5 -26.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.77 : num [1:43, 1:2] -39.2 -34.4 -28.9 -22.2 -19 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.78 : num [1:43, 1:2] -20.8 -18.4 -15.6 -12.3 -10.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.79 : num [1:43, 1:2] -22.4 -20.6 -18.4 -15.9 -14.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.80 : num [1:43, 1:2] -22.3 -20 -17.4 -14.2 -12.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.81 : num [1:43, 1:2] -20.8 -19.1 -17.1 -14.8 -13.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.82 : num [1:43, 1:2] -22.07 -19.06 -15.57 -11.32 -9.29 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.83 : num [1:43, 1:2] -33.5 -30.4 -26.9 -22.6 -20.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.84 : num [1:43, 1:2] -37.9 -33.5 -28.4 -22.2 -19.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.85 : num [1:43, 1:2] -38.9 -34.4 -29 -22.6 -19.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.86 : num [1:43, 1:2] -36.6 -32.3 -27.2 -21.1 -18.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.87 : num [1:43, 1:2] -41.8 -36.8 -31 -24 -20.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.88 : num [1:43, 1:2] -23 -20.6 -17.8 -14.4 -12.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.89 : num [1:43, 1:2] -30.3 -26.5 -22.1 -16.7 -14.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.90 : num [1:43, 1:2] -23.8 -21.4 -18.5 -15.1 -13.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.91 : num [1:43, 1:2] -35.9 -32.1 -27.8 -22.5 -20 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.92 : num [1:43, 1:2] -26.5 -23.6 -20.3 -16.2 -14.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.93 : num [1:43, 1:2] -32.3 -28.7 -24.5 -19.4 -17 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.94 : num [1:43, 1:2] -45.4 -38.9 -31.4 -22.3 -17.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.95 : num [1:43, 1:2] -34.9 -30 -24.4 -17.6 -14.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.96 : num [1:43, 1:2] -43.2 -36.9 -29.6 -20.7 -16.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.97 : num [1:43, 1:2] -30.97 -25.91 -20.07 -13.01 -9.64 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.98 : num [1:43, 1:2] -38.2 -33.7 -28.5 -22.1 -19.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.99 : num [1:43, 1:2] -39.4 -34.8 -29.5 -23.1 -20.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. .. [list output truncated]
## $ size.random :List of 1
## ..$ :List of 5
## .. ..$ n : num 7169
## .. ..$ N : num 7169
## .. ..$ Ntotal: num 28676
## .. ..$ ngroup: num 1
## .. ..$ nrep : num 4
## $ summary.linear.predictor :'data.frame': 43212 obs. of 7 variables:
## ..$ mean : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## ..$ sd : num [1:43212] 3.44 6.36 6.24 6.78 6.07 ...
## ..$ 0.025quant: num [1:43212] 10.78 2.6 11.03 13.75 -1.32 ...
## ..$ 0.5quant : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## ..$ 0.975quant: num [1:43212] 24.3 27.5 35.5 40.3 22.5 ...
## ..$ mode : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## ..$ kld : num [1:43212] 1.03e-10 3.11e-11 2.57e-11 3.27e-11 1.09e-10 ...
## $ marginals.linear.predictor : NULL
## $ summary.fitted.values :'data.frame': 43212 obs. of 6 variables:
## ..$ mean : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## ..$ sd : num [1:43212] 3.44 6.36 6.24 6.78 6.07 ...
## ..$ 0.025quant: num [1:43212] 10.78 2.6 11.03 13.75 -1.32 ...
## ..$ 0.5quant : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## ..$ 0.975quant: num [1:43212] 24.3 27.5 35.5 40.3 22.5 ...
## ..$ mode : num [1:43212] 17.5 15.1 23.3 27 10.6 ...
## $ marginals.fitted.values : NULL
## $ size.linear.predictor :List of 5
## ..$ n : num 28678
## ..$ N : num 28678
## ..$ Ntotal: num 43212
## ..$ ngroup: num 1
## ..$ nrep : num 2
## $ summary.hyperpar :'data.frame': 3 obs. of 6 variables:
## ..$ mean : num [1:3] 0.012 2.853 -1.089
## ..$ sd : num [1:3] 0.000186 0.070071 0.216501
## ..$ 0.025quant: num [1:3] 0.0116 2.7174 -1.5081
## ..$ 0.5quant : num [1:3] 0.012 2.852 -1.091
## ..$ 0.975quant: num [1:3] 0.0124 2.9933 -0.6557
## ..$ mode : num [1:3] 0.012 2.849 -1.102
## $ marginals.hyperpar :List of 3
## ..$ Precision for the Gaussian observations: num [1:43, 1:2] 0.0112 0.0113 0.0114 0.0116 0.0116 ...
## .. ..- attr(*, "hyperid")= chr "65001|INLA.Data1"
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta1 for field : num [1:43, 1:2] 2.56 2.6 2.64 2.69 2.72 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta2 for field : num [1:43, 1:2] -1.99 -1.88 -1.75 -1.59 -1.51 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ internal.summary.hyperpar :'data.frame': 3 obs. of 6 variables:
## ..$ mean : num [1:3] -4.42 2.85 -1.09
## ..$ sd : num [1:3] 0.0155 0.0701 0.2165
## ..$ 0.025quant: num [1:3] -4.45 2.72 -1.51
## ..$ 0.5quant : num [1:3] -4.42 2.85 -1.09
## ..$ 0.975quant: num [1:3] -4.394 2.993 -0.656
## ..$ mode : num [1:3] -4.42 2.85 -1.1
## $ internal.marginals.hyperpar:List of 3
## ..$ Log precision for the Gaussian observations: num [1:43, 1:2] -4.49 -4.48 -4.47 -4.46 -4.45 ...
## .. ..- attr(*, "hyperid")= chr "65001|INLA.Data1"
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta1 for field : num [1:43, 1:2] 2.56 2.6 2.64 2.69 2.72 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta2 for field : num [1:43, 1:2] -1.99 -1.88 -1.75 -1.59 -1.51 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ offset.linear.predictor : num [1:43212] 0 0 0 0 0 0 0 0 0 0 ...
## $ model.spde2.blc : NULL
## $ summary.spde2.blc : list()
## $ marginals.spde2.blc : NULL
## $ size.spde2.blc : NULL
## $ model.spde3.blc : NULL
## $ summary.spde3.blc : list()
## $ marginals.spde3.blc : NULL
## $ size.spde3.blc : NULL
## $ logfile : chr [1:591] "[PANUA] PARDISO License is expired." "[PANUA] Please obtain a new PARDISO license at https://www.panua.ch/products/pardiso" " Read ntt 24 1 with max.threads 24" " Found num.threads = 24:1 max_threads = 24" ...
## $ misc :List of 22
## ..$ cov.intern : num [1:3, 1:3] 0.000242 -0.000223 -0.001011 -0.000223 0.004901 ...
## ..$ cor.intern : num [1:3, 1:3] 1 -0.205 -0.301 -0.205 1 ...
## ..$ cov.intern.eigenvalues : num [1:3] 0.000167 0.000374 0.051368
## ..$ cov.intern.eigenvectors : num [1:3, 1:3] 0.86 -0.482 0.169 -0.51 -0.824 ...
## ..$ reordering : int [1:28678] 21236 21250 18529 18523 18507 18533 18536 18540 20215 20179 ...
## ..$ theta.tags : chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## ..$ log.posterior.mode : num -55585
## ..$ stdev.corr.negative : num [1:3] 0.999 0.994 0.961
## ..$ stdev.corr.positive : num [1:3] 1 1.01 1.04
## ..$ to.theta :List of 3
## .. ..$ Log precision for the Gaussian observations:function (x)
## .. ..$ Theta1 for field :function (x)
## .. ..$ Theta2 for field :function (x)
## ..$ from.theta :List of 3
## .. ..$ Log precision for the Gaussian observations:function (x)
## .. ..$ Theta1 for field :function (x)
## .. ..$ Theta2 for field :function (x)
## ..$ mode.status : num 0
## ..$ lincomb.derived.correlation.matrix: NULL
## ..$ lincomb.derived.covariance.matrix : NULL
## ..$ opt.directions : num [1:3, 1:3] -0.434 0.646 -0.628 -0.672 0.233 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : chr [1:3] "theta:1" "theta:2" "theta:3"
## .. .. ..$ : chr [1:3] "dir:1" "dir:2" "dir:3"
## ..$ configs :List of 17
## .. ..$ .preopt : logi TRUE
## .. ..$ lite : logi FALSE
## .. ..$ mpred : int 14534
## .. ..$ npred : int 28678
## .. ..$ mnpred : int 43212
## .. ..$ Npred : int 14534
## .. ..$ n : int 28678
## .. ..$ nz : int 80857
## .. ..$ prior_nz : int 64098
## .. ..$ ntheta : int 3
## .. ..$ nconfig : int 15
## .. ..$ offsets : num [1:43212] 0 0 0 0 0 0 0 0 0 0 ...
## .. ..$ contents :List of 3
## .. .. ..$ tag : chr [1:5] "APredictor" "Predictor" "field" "Intercept" ...
## .. .. ..$ start : int [1:5] 1 14535 43213 71889 71890
## .. .. ..$ length: int [1:5] 14534 28678 28676 1 1
## .. ..$ A :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:28678] 2 3 4 5 6 7 8 9 10 11 ...
## .. .. .. ..@ j : int [1:28678] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:28678] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ pA :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ j : int [1:58122] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ config :List of 15
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.42 2.85 -1.1
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -3.41
## .. .. .. ..$ log.posterior.orig: num 0
## .. .. .. ..$ mean : num [1:28678] -2.774 -3.361 -0.724 -0.355 -0.49 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.774 -3.361 -0.724 -0.355 -0.49 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04186 -0.00765 0.09808 0.0924 -0.03508 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.94 2.57 12.77 49.6 41.72 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0289 -0.0153 0.0618 0.0924 -0.0351 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2102 -0.026 0.0104 0.0617 -0.127 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15 23.3 27 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.88 3.062 -2.774 -3.361 -0.724 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.4 2.84 -1.1
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.49
## .. .. .. ..$ log.posterior.orig: num -1.82
## .. .. .. ..$ mean : num [1:28678] -2.753 -3.354 -0.725 -0.356 -0.489 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.753 -3.354 -0.725 -0.356 -0.489 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04295 -0.00792 0.1006 0.09501 -0.03607 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.3 2.53 12.46 48.32 40.65 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0297 -0.0158 0.0635 0.095 -0.0361 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2149 -0.0266 0.0107 0.0632 -0.13 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.3 27 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.879 3.061 -2.753 -3.354 -0.725 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.45 2.86 -1.11
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.48
## .. .. .. ..$ log.posterior.orig: num -1.81
## .. .. .. ..$ mean : num [1:28678] -2.794 -3.367 -0.723 -0.354 -0.49 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.794 -3.367 -0.723 -0.354 -0.49 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0408 -0.00739 0.09564 0.08987 -0.03411 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.6 2.61 13.07 50.91 42.81 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0281 -0.0149 0.0601 0.0899 -0.0341 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2057 -0.0254 0.0101 0.0602 -0.124 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15 23.3 27.1 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.88 3.062 -2.794 -3.367 -0.723 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.44 2.82 -1.09
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.48
## .. .. .. ..$ log.posterior.orig: num -1.81
## .. .. .. ..$ mean : num [1:28678] -2.487 -3.241 -0.728 -0.361 -0.489 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.487 -3.241 -0.728 -0.361 -0.489 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0437 -0.0089 0.1019 0.0991 -0.0376 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.1 2.8 12.5 46.5 39.2 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.031 -0.0164 0.0662 0.0991 -0.0376 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2085 -0.0263 0.0116 0.0636 -0.1286 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.7 15.1 23.1 26.8 10.9 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.857 3.115 -2.487 -3.241 -0.728 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.41 2.88 -1.11
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.49
## .. .. .. ..$ log.posterior.orig: num -1.82
## .. .. .. ..$ mean : num [1:28678] -3.067 -3.473 -0.72 -0.348 -0.489 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.067 -3.473 -0.72 -0.348 -0.489 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04018 -0.00647 0.09465 0.08623 -0.03273 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.81 2.32 13.02 52.86 44.42 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.027 -0.0143 0.0577 0.0862 -0.0327 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2119 -0.02566 0.00922 0.05979 -0.12511 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.4 15 23.4 27.3 10.2 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.9 3.01 -3.07 -3.47 -0.72 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.433 2.984 -0.674
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.91
## .. .. .. ..$ log.posterior.orig: num -2.24
## .. .. .. ..$ mean : num [1:28678] -2.419 -3.361 -0.638 -0.293 -0.325 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.419 -3.361 -0.638 -0.293 -0.325 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0462 -0.0104 0.1074 0.1076 -0.0411 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.1 3.1 12.2 48.4 41.4 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0334 -0.018 0.0714 0.1076 -0.0411 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21252 -0.0275 0.00926 0.06347 -0.13289 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.9 15.2 23.4 26.8 11.2 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.992 2.654 -2.419 -3.361 -0.638 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.42 2.72 -1.5
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.95
## .. .. .. ..$ log.posterior.orig: num -2.28
## .. .. .. ..$ mean : num [1:28678] -3.116 -3.32 -0.569 -0.206 -0.413 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.116 -3.32 -0.569 -0.206 -0.413 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.03885 -0.00548 0.09158 0.08093 -0.03028 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 27.42 2.01 13.14 46.98 38.41 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0258 -0.0132 0.055 0.0809 -0.0303 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2081 -0.0276 0.0122 0.0613 -0.1221 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.2 15.2 23.1 27.1 10.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.775 3.507 -3.116 -3.32 -0.569 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.42 2.8 -1.34
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.18
## .. .. .. ..$ log.posterior.orig: num -1.51
## .. .. .. ..$ mean : num [1:28678] -3.153 -3.407 -0.655 -0.281 -0.469 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.153 -3.407 -0.655 -0.281 -0.469 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0385 -0.0056 0.0909 0.0808 -0.0305 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 27.74 2.12 13.34 51.12 42.35 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0255 -0.0133 0.0545 0.0808 -0.0305 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2073 -0.0262 0.0104 0.0593 -0.1213 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.2 15.1 23.3 27.3 10.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.832 3.287 -3.153 -3.407 -0.655 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.431 2.951 -0.863
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.15
## .. .. .. ..$ log.posterior.orig: num -1.47
## .. .. .. ..$ mean : num [1:28678] -2.742 -3.44 -0.705 -0.349 -0.425 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.742 -3.44 -0.705 -0.349 -0.425 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04251 -0.00826 0.09948 0.09533 -0.03636 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.74 2.78 12.79 51.99 44.18 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0297 -0.0159 0.0634 0.0953 -0.0364 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2099 -0.02577 0.00894 0.06073 -0.12762 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.4 27.1 10.7 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.958 2.781 -2.742 -3.44 -0.705 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.44 2.77 -1.33
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.6
## .. .. .. ..$ log.posterior.orig: num -1.93
## .. .. .. ..$ mean : num [1:28678] -2.812 -3.28 -0.659 -0.288 -0.469 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.812 -3.28 -0.659 -0.288 -0.469 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04036 -0.00689 0.09464 0.08758 -0.03302 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.71 2.42 13.03 47.5 39.4 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0277 -0.0144 0.059 0.0876 -0.033 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2054 -0.0265 0.0117 0.0615 -0.1234 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15.1 23.1 27 10.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.806 3.345 -2.812 -3.28 -0.659 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.453 2.916 -0.852
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.62
## .. .. .. ..$ log.posterior.orig: num -1.95
## .. .. .. ..$ mean : num [1:28678] -2.416 -3.3 -0.709 -0.355 -0.425 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.416 -3.3 -0.709 -0.355 -0.425 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04472 -0.00975 0.104 0.10332 -0.03941 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.75 3.04 12.5 48.27 41.07 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0322 -0.0172 0.0687 0.1033 -0.0394 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2079 -0.0262 0.0103 0.0628 -0.1295 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.1 23.3 26.8 11.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.933 2.843 -2.416 -3.3 -0.709 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.4 2.79 -1.33
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.49
## .. .. .. ..$ log.posterior.orig: num -1.82
## .. .. .. ..$ mean : num [1:28678] -3.129 -3.4 -0.657 -0.283 -0.47 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.129 -3.4 -0.657 -0.283 -0.47 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.03966 -0.00585 0.09357 0.08346 -0.03146 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.96 2.09 12.97 49.63 41.13 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0264 -0.0137 0.0562 0.0835 -0.0315 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2126 -0.0269 0.0107 0.061 -0.1246 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.3 15.1 23.3 27.2 10.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.831 3.286 -3.129 -3.4 -0.657 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.406 2.937 -0.858
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.5
## .. .. .. ..$ log.posterior.orig: num -1.83
## .. .. .. ..$ mean : num [1:28678] -2.719 -3.432 -0.704 -0.348 -0.424 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.719 -3.432 -0.704 -0.348 -0.424 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0438 -0.00859 0.10243 0.09845 -0.03755 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.01 2.73 12.44 50.43 42.86 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0306 -0.0164 0.0655 0.0984 -0.0376 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21529 -0.02649 0.00925 0.06246 -0.13114 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.4 27.1 10.8 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.958 2.78 -2.719 -3.432 -0.704 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.42 2.75 -1.32
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.95
## .. .. .. ..$ log.posterior.orig: num -2.28
## .. .. .. ..$ mean : num [1:28678] -2.788 -3.273 -0.662 -0.291 -0.47 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.788 -3.273 -0.662 -0.291 -0.47 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04157 -0.00717 0.09743 0.09043 -0.0341 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.96 2.38 12.67 46.11 38.26 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0286 -0.0149 0.0609 0.0904 -0.0341 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2106 -0.0272 0.0121 0.0632 -0.1268 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15.1 23.1 26.9 10.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.805 3.344 -2.788 -3.273 -0.662 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:3] -4.428 2.902 -0.848
## .. .. .. .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## .. .. .. ..$ log.posterior : num -4.94
## .. .. .. ..$ log.posterior.orig: num -2.26
## .. .. .. ..$ mean : num [1:28678] -2.393 -3.291 -0.708 -0.354 -0.423 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.393 -3.291 -0.708 -0.354 -0.423 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0461 -0.0101 0.1071 0.1067 -0.0407 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.04 2.98 12.16 46.82 39.85 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0332 -0.0178 0.0709 0.1067 -0.0407 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2132 -0.0269 0.0107 0.0646 -0.1331 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.9 15.1 23.2 26.8 11.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.932 2.843 -2.393 -3.291 -0.708 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. ..$ max.log.posterior: num -55585
## ..$ nfunc : num 176
## ..$ warnings : chr(0)
## ..$ opt.trace :List of 3
## .. ..$ f : Named num [1:41] 24748964 24646464 24604602 9901050 9884246 ...
## .. .. ..- attr(*, "names")= chr [1:41] "iter1" "iter2" "iter3" "iter4" ...
## .. ..$ nfunc: Named int [1:41] 1 2 4 5 8 10 11 15 16 19 ...
## .. .. ..- attr(*, "names")= chr [1:41] "iter1" "iter2" "iter3" "iter4" ...
## .. ..$ theta: num [1:41, 1:3] 4 4 4 3.09 3.09 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : chr [1:41] "iter1" "iter2" "iter3" "iter4" ...
## .. .. .. ..$ : chr [1:3] "theta1" "theta2" "theta3"
## ..$ theta.mode : num [1:3] -4.42 2.85 -1.1
## ..$ linkfunctions :List of 2
## .. ..$ names: chr "identity"
## .. ..$ link : int [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ family : int [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## $ dic :List of 14
## ..$ dic : num 108509
## ..$ p.eff : num 2959
## ..$ mean.deviance : num 105550
## ..$ deviance.mean : num 102591
## ..$ dic.sat : num 17495
## ..$ mean.deviance.sat: num 14537
## ..$ deviance.mean.sat: num 11579
## ..$ family.dic : num 108509
## ..$ family.dic.sat : num 17495
## ..$ family.p.eff : num 2959
## ..$ family : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ local.dic : num [1:14534] 10.23 7.29 7.21 7.68 8.49 ...
## ..$ local.dic.sat : num [1:14534] 3.968 1.028 0.944 1.419 2.224 ...
## ..$ local.p.eff : num [1:14534] 0.142 0.485 0.467 0.551 0.44 ...
## $ mode :List of 5
## ..$ theta : Named num [1:3] -4.42 2.85 -1.1
## .. ..- attr(*, "names")= chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## ..$ x : num [1:71890] 17.5 15 23.3 27 10.6 ...
## ..$ theta.tags : chr [1:3] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field"
## ..$ mode.status : num 0
## ..$ log.posterior.mode: num -55585
## $ joint.hyper :'data.frame': 15 obs. of 5 variables:
## ..$ Log precision for the Gaussian observations : num [1:15] -4.42 -4.4 -4.45 -4.44 -4.41 ...
## ..$ Theta1 for field : num [1:15] 2.85 2.84 2.86 2.82 2.88 ...
## ..$ Theta2 for field : num [1:15] -1.1 -1.1 -1.11 -1.09 -1.11 ...
## ..$ Log posterior density : num [1:15] -55595 -55597 -55597 -55597 -55597 ...
## ..$ Total integration weight (log.dens included): num [1:15] 0.1836 0.062 0.0629 0.0627 0.062 ...
## $ nhyper : int 3
## $ version :List of 2
## ..$ inla.call: chr "GITCOMMIT [5829a3e4dca069df580255b6c91f39493b31af36 - Fri Feb 9 06:17:02 2024 +0300]"
## ..$ R.INLA : Named chr "24.02.09"
## .. ..- attr(*, "names")= chr "version"
## $ Q : NULL
## $ graph : NULL
## $ ok : logi TRUE
## $ cpu.used : Named num [1:4] 0.347 6.002 1.176 7.526
## ..- attr(*, "names")= chr [1:4] "Pre" "Running" "Post" "Total"
## $ all.hyper :List of 4
## ..$ predictor:List of 1
## .. ..$ hyper:List of 1
## .. .. ..$ theta:List of 9
## .. .. .. ..$ hyperid : num 53001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "log precision"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name: chr "prec"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 13.8
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1e+00 1e-05
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta:function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## ..$ family :List of 1
## .. ..$ :List of 4
## .. .. ..$ hyperid: chr "INLA.Data1"
## .. .. ..$ label : chr "gaussian"
## .. .. ..$ hyper :List of 2
## .. .. .. ..$ theta1:List of 11
## .. .. .. .. ..$ hyperid : num 65001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "prec"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "Precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "Log precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 4
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 1e+00 5e-05
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ theta2:List of 11
## .. .. .. .. ..$ hyperid : num 65002
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision offset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "precoffset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 72.1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "none"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ param : num(0)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ link :List of 1
## .. .. .. ..$ hyper: list()
## ..$ linear :List of 2
## .. ..$ :List of 3
## .. .. ..$ label : chr "Intercept"
## .. .. ..$ prior.mean: num 0
## .. .. ..$ prior.prec: num 0.001
## .. ..$ :List of 3
## .. .. ..$ label : chr "SpeedLimit"
## .. .. ..$ prior.mean: num 0
## .. .. ..$ prior.prec: num 0.001
## ..$ random :List of 3
## .. ..$ : NULL
## .. ..$ : NULL
## .. ..$ :List of 3
## .. .. ..$ hyperid : chr "field"
## .. .. ..$ hyper : NULL
## .. .. ..$ group.hyper:List of 1
## .. .. .. ..$ theta:List of 9
## .. .. .. .. ..$ hyperid : num 40001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "logit correlation"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name: chr "rho"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "normal"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 0 0.2
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x, REPLACE.ME.ngroup)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta:function (x, REPLACE.ME.ngroup)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## $ .args :List of 30
## ..$ formula :Class 'formula' language BRU.response ~ f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_v| __truncated__ ...
## ..$ family : chr "gaussian"
## ..$ data :List of 21
## .. ..$ BRU.response : num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. ..$ BRU.E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## .. ..$ Intercept : num [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ Intercept.group : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ Intercept.repl : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit : num [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit.group : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit.repl : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ field : int [1:28678] NA NA 1 2 3 4 5 6 7 8 ...
## .. ..$ field.group : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. ..$ field.repl : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU_Intercept_main_model : chr "linear"
## .. ..$ BRU_Intercept_values : num 1
## .. ..$ BRU_SpeedLimit_main_model: chr "linear"
## .. ..$ BRU_SpeedLimit_values : num 1
## .. ..$ BRU_field_main_model :List of 21
## .. .. ..$ f :List of 3
## .. .. .. ..$ model : chr "cgeneric"
## .. .. .. ..$ n : int 7169
## .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. ..$ n : int 7169
## .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. ..$ m_alpha : int 1
## .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. ..$ doubles :List of 4
## .. .. .. .. .. .. ..$ matrices_less : num [1:32048] 0.0797 0 0 0.1564 0 ...
## .. .. .. .. .. .. ..$ theta.prior.mean: num [1:2] 0 0.223
## .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. ..$ characters:List of 4
## .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. ..$ matrices :List of 1
## .. .. .. .. .. .. ..$ theta.prior.prec: num [1:6] 2 2 0.1 0 0 0.1
## .. .. .. .. .. ..$ smatrices : list()
## .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. ..$ nu : num 0.5
## .. .. ..$ theta.prior.mean : num [1:2] 0 0.223
## .. .. ..$ prior.nu :List of 4
## .. .. .. ..$ loglocation: num -5e-06
## .. .. .. ..$ mean : num 1
## .. .. .. ..$ prec : num 3
## .. .. .. ..$ logscale : num 1
## .. .. ..$ theta.prior.prec : num [1:2, 1:2] 0.1 0 0 0.1
## .. .. ..$ start.nu : num 0.5
## .. .. ..$ integer.nu : logi TRUE
## .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. ..$ stationary : logi TRUE
## .. .. ..$ rspde.order : num 2
## .. .. ..$ dim : num 1
## .. .. ..$ est_nu : logi FALSE
## .. .. ..$ nu.upper.bound : num 2
## .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. ..$ debug : logi FALSE
## .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. ..$ fem_mesh :List of 4
## .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. ..$ parameterization : chr "matern"
## .. .. ..$ n.spde : int 7169
## .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. ..$ BRU_field_values : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## ..$ quantiles : num [1:3] 0.025 0.5 0.975
## ..$ E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ verbose : logi FALSE
## ..$ control.compute :List of 18
## .. ..$ openmp.strategy : chr "default"
## .. ..$ hyperpar : logi TRUE
## .. ..$ return.marginals : logi TRUE
## .. ..$ return.marginals.predictor: logi FALSE
## .. ..$ dic : logi TRUE
## .. ..$ mlik : logi TRUE
## .. ..$ cpo : logi FALSE
## .. ..$ po : logi FALSE
## .. ..$ waic : logi TRUE
## .. ..$ residuals : logi FALSE
## .. ..$ q : logi FALSE
## .. ..$ config : logi TRUE
## .. ..$ likelihood.info : logi FALSE
## .. ..$ smtp : NULL
## .. ..$ graph : logi FALSE
## .. ..$ internal.opt : NULL
## .. ..$ save.memory : NULL
## .. ..$ control.gcpo :List of 14
## .. .. ..$ enable : logi FALSE
## .. .. ..$ num.level.sets : num -1
## .. .. ..$ size.max : num 32
## .. .. ..$ strategy : chr [1:2] "posterior" "prior"
## .. .. ..$ groups : NULL
## .. .. ..$ selection : NULL
## .. .. ..$ friends : NULL
## .. .. ..$ verbose : logi FALSE
## .. .. ..$ epsilon : num 0.005
## .. .. ..$ prior.diagonal : num 1e-04
## .. .. ..$ correct.hyperpar: logi TRUE
## .. .. ..$ keep : NULL
## .. .. ..$ remove : NULL
## .. .. ..$ remove.fixed : logi TRUE
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_gcpo" "inla_ctrl_object"
## .. ..- attr(*, "class")= chr [1:2] "ctrl_compute" "inla_ctrl_object"
## ..$ control.predictor:List of 12
## .. ..$ hyper :List of 1
## .. .. ..$ theta:List of 9
## .. .. .. ..$ hyperid : num 53001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "log precision"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name: chr "prec"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 13.8
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1e+00 1e-05
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta:function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. ..$ fixed : NULL
## .. ..$ prior : NULL
## .. ..$ param : NULL
## .. ..$ initial : NULL
## .. ..$ compute : logi TRUE
## .. ..$ cdf : NULL
## .. ..$ quantiles: NULL
## .. ..$ cross : NULL
## .. ..$ A :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ j : int [1:58122] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ precision: num 3269017
## .. ..$ link : NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_predictor" "inla_ctrl_object"
## ..$ control.family :List of 1
## .. ..$ :List of 17
## .. .. ..$ dummy : num 0
## .. .. ..$ hyper :List of 2
## .. .. .. ..$ theta1:List of 11
## .. .. .. .. ..$ hyperid : num 65001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "prec"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "Precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "Log precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 4
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 1e+00 5e-05
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ theta2:List of 11
## .. .. .. .. ..$ hyperid : num 65002
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision offset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "precoffset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 72.1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "none"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ param : num(0)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ initial : NULL
## .. .. ..$ prior : NULL
## .. .. ..$ param : NULL
## .. .. ..$ fixed : NULL
## .. .. ..$ link : chr "default"
## .. .. ..$ sn.shape.max : num 5
## .. .. ..$ gev.scale.xi : num 0.1
## .. .. ..$ control.bgev : NULL
## .. .. ..$ cenpoisson.I : int [1:2] -1 -1
## .. .. ..$ beta.censor.value: num 0
## .. .. ..$ variant : int 0
## .. .. ..$ control.mix : NULL
## .. .. ..$ control.pom : NULL
## .. .. ..$ control.link :List of 10
## .. .. .. ..$ model : chr "default"
## .. .. .. ..$ order : NULL
## .. .. .. ..$ variant : NULL
## .. .. .. ..$ hyper : list()
## .. .. .. ..$ quantile: NULL
## .. .. .. ..$ a : num 1
## .. .. .. ..$ initial : NULL
## .. .. .. ..$ fixed : NULL
## .. .. .. ..$ prior : NULL
## .. .. .. ..$ param : NULL
## .. .. .. ..- attr(*, "class")= chr [1:2] "ctrl_link" "inla_ctrl_object"
## .. .. ..$ link.simple : chr "default"
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_family" "inla_ctrl_object"
## ..$ control.inla :List of 56
## .. ..$ strategy : chr "auto"
## .. ..$ int.strategy : chr "auto"
## .. ..$ int.design : NULL
## .. ..$ interpolator : chr "auto"
## .. ..$ fast : logi TRUE
## .. ..$ linear.correction : NULL
## .. ..$ h : num 0.005
## .. ..$ dz : num 0.75
## .. ..$ diff.logdens : num 6
## .. ..$ print.joint.hyper : logi TRUE
## .. ..$ force.diagonal : logi FALSE
## .. ..$ skip.configurations : logi TRUE
## .. ..$ mode.known : logi FALSE
## .. ..$ adjust.weights : logi TRUE
## .. ..$ tolerance : num 0.005
## .. ..$ tolerance.f : NULL
## .. ..$ tolerance.g : NULL
## .. ..$ tolerance.x : NULL
## .. ..$ tolerance.step : num 0.001
## .. ..$ restart : int 0
## .. ..$ optimiser : chr "default"
## .. ..$ verbose : NULL
## .. ..$ reordering : chr "auto"
## .. ..$ cpo.diff : NULL
## .. ..$ npoints : num 9
## .. ..$ cutoff : num 1e-04
## .. ..$ adapt.hessian.mode : NULL
## .. ..$ adapt.hessian.max.trials : NULL
## .. ..$ adapt.hessian.scale : NULL
## .. ..$ adaptive.max : int 25
## .. ..$ huge : logi FALSE
## .. ..$ step.len : num 0
## .. ..$ stencil : int 5
## .. ..$ lincomb.derived.correlation.matrix: logi FALSE
## .. ..$ diagonal : num 0
## .. ..$ numint.maxfeval : num 1e+05
## .. ..$ numint.relerr : num 1e-05
## .. ..$ numint.abserr : num 1e-06
## .. ..$ cmin : num -Inf
## .. ..$ b.strategy : chr "keep"
## .. ..$ step.factor : num -0.1
## .. ..$ global.node.factor : num 2
## .. ..$ global.node.degree : int 2147483647
## .. ..$ stupid.search : logi TRUE
## .. ..$ stupid.search.max.iter : int 1000
## .. ..$ stupid.search.factor : num 1.05
## .. ..$ control.vb :List of 8
## .. .. ..$ enable : chr "auto"
## .. .. ..$ strategy : chr [1:2] "mean" "variance"
## .. .. ..$ verbose : logi TRUE
## .. .. ..$ iter.max : num 25
## .. .. ..$ emergency : num 25
## .. .. ..$ f.enable.limit : num [1:4] 30 25 1024 768
## .. .. ..$ hessian.update : num 2
## .. .. ..$ hessian.strategy: chr [1:4] "default" "full" "partial" "diagonal"
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_vb" "inla_ctrl_object"
## .. ..$ num.gradient : chr "central"
## .. ..$ num.hessian : chr "central"
## .. ..$ optimise.strategy : chr "smart"
## .. ..$ use.directions : logi TRUE
## .. ..$ constr.marginal.diagonal : num 1.49e-08
## .. ..$ improved.simplified.laplace : logi FALSE
## .. ..$ parallel.linesearch : logi FALSE
## .. ..$ compute.initial.values : logi TRUE
## .. ..$ hessian.correct.skewness.only : logi TRUE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_inla" "inla_ctrl_object"
## ..$ control.fixed :List of 10
## .. ..$ cdf : NULL
## .. ..$ quantiles : NULL
## .. ..$ expand.factor.strategy: chr "inla"
## .. ..$ mean : num 0
## .. ..$ mean.intercept : num 0
## .. ..$ prec : num 0.001
## .. ..$ prec.intercept : num 0
## .. ..$ compute : logi TRUE
## .. ..$ correlation.matrix : logi FALSE
## .. ..$ remove.names : NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_fixed" "inla_ctrl_object"
## ..$ control.mode :List of 5
## .. ..$ result : NULL
## .. ..$ theta : NULL
## .. ..$ x : NULL
## .. ..$ restart: logi FALSE
## .. ..$ fixed : logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_mode" "inla_ctrl_object"
## ..$ control.expert :List of 6
## .. ..$ cpo.manual : logi FALSE
## .. ..$ cpo.idx : num -1
## .. ..$ disable.gaussian.check: logi FALSE
## .. ..$ jp : NULL
## .. ..$ dot.product.gain : logi FALSE
## .. ..$ globalconstr :List of 2
## .. .. ..$ A: NULL
## .. .. ..$ e: NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_expert" "inla_ctrl_object"
## ..$ control.lincomb :List of 1
## .. ..$ verbose: logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_lincomb" "inla_ctrl_object"
## ..$ control.update :List of 1
## .. ..$ result: NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_update" "inla_ctrl_object"
## ..$ control.lp.scale :List of 1
## .. ..$ hyper:List of 100
## .. .. ..$ theta1 :List of 11
## .. .. .. ..$ hyperid : num 103001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta1"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b1"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[1] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[1] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta2 :List of 11
## .. .. .. ..$ hyperid : num 103002
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta2"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b2"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[2] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[2] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta3 :List of 11
## .. .. .. ..$ hyperid : num 103003
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta3"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b3"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[3] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[3] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta4 :List of 11
## .. .. .. ..$ hyperid : num 103004
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta4"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b4"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[4] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[4] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta5 :List of 11
## .. .. .. ..$ hyperid : num 103005
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta5"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b5"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[5] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[5] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta6 :List of 11
## .. .. .. ..$ hyperid : num 103006
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta6"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b6"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[6] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[6] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta7 :List of 11
## .. .. .. ..$ hyperid : num 103007
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta7"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b7"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[7] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[7] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta8 :List of 11
## .. .. .. ..$ hyperid : num 103008
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta8"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b8"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[8] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[8] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta9 :List of 11
## .. .. .. ..$ hyperid : num 103009
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta9"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b9"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[9] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[9] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta10 :List of 11
## .. .. .. ..$ hyperid : num 103010
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta10"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b10"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[10] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[10] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta11 :List of 11
## .. .. .. ..$ hyperid : num 103011
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta11"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b11"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[11] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[11] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta12 :List of 11
## .. .. .. ..$ hyperid : num 103012
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta12"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b12"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[12] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[12] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta13 :List of 11
## .. .. .. ..$ hyperid : num 103013
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta13"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b13"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[13] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[13] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta14 :List of 11
## .. .. .. ..$ hyperid : num 103014
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta14"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b14"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[14] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[14] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta15 :List of 11
## .. .. .. ..$ hyperid : num 103015
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta15"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b15"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[15] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[15] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta16 :List of 11
## .. .. .. ..$ hyperid : num 103016
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta16"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b16"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[16] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[16] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta17 :List of 11
## .. .. .. ..$ hyperid : num 103017
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta17"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b17"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[17] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[17] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta18 :List of 11
## .. .. .. ..$ hyperid : num 103018
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta18"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b18"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[18] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[18] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta19 :List of 11
## .. .. .. ..$ hyperid : num 103019
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta19"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b19"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[19] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[19] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta20 :List of 11
## .. .. .. ..$ hyperid : num 103020
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta20"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b20"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[20] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[20] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta21 :List of 11
## .. .. .. ..$ hyperid : num 103021
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta21"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b21"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[21] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[21] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta22 :List of 11
## .. .. .. ..$ hyperid : num 103022
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta22"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b22"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[22] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[22] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta23 :List of 11
## .. .. .. ..$ hyperid : num 103023
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta23"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b23"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[23] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[23] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta24 :List of 11
## .. .. .. ..$ hyperid : num 103024
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta24"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b24"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[24] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[24] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta25 :List of 11
## .. .. .. ..$ hyperid : num 103025
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta25"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b25"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[25] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[25] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta26 :List of 11
## .. .. .. ..$ hyperid : num 103026
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta26"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b26"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[26] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[26] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta27 :List of 11
## .. .. .. ..$ hyperid : num 103027
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta27"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b27"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[27] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[27] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta28 :List of 11
## .. .. .. ..$ hyperid : num 103028
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta28"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b28"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[28] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[28] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta29 :List of 11
## .. .. .. ..$ hyperid : num 103029
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta29"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b29"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[29] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[29] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta30 :List of 11
## .. .. .. ..$ hyperid : num 103030
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta30"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b30"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[30] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[30] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta31 :List of 11
## .. .. .. ..$ hyperid : num 103031
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta31"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b31"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[31] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[31] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta32 :List of 11
## .. .. .. ..$ hyperid : num 103032
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta32"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b32"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[32] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[32] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta33 :List of 11
## .. .. .. ..$ hyperid : num 103033
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta33"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b33"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[33] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[33] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta34 :List of 11
## .. .. .. ..$ hyperid : num 103034
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta34"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b34"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[34] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[34] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta35 :List of 11
## .. .. .. ..$ hyperid : num 103035
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta35"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b35"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[35] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[35] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta36 :List of 11
## .. .. .. ..$ hyperid : num 103036
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta36"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b36"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[36] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[36] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta37 :List of 11
## .. .. .. ..$ hyperid : num 103037
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta37"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b37"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[37] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[37] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta38 :List of 11
## .. .. .. ..$ hyperid : num 103038
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta38"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b38"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[38] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[38] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta39 :List of 11
## .. .. .. ..$ hyperid : num 103039
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta39"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b39"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[39] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[39] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta40 :List of 11
## .. .. .. ..$ hyperid : num 103040
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta40"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b40"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[40] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[40] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta41 :List of 11
## .. .. .. ..$ hyperid : num 103041
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta41"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b41"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[41] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[41] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta42 :List of 11
## .. .. .. ..$ hyperid : num 103042
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta42"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b42"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[42] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[42] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta43 :List of 11
## .. .. .. ..$ hyperid : num 103043
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta43"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b43"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[43] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[43] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta44 :List of 11
## .. .. .. ..$ hyperid : num 103044
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta44"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b44"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[44] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[44] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta45 :List of 11
## .. .. .. ..$ hyperid : num 103045
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta45"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b45"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[45] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[45] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta46 :List of 11
## .. .. .. ..$ hyperid : num 103046
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta46"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b46"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[46] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[46] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta47 :List of 11
## .. .. .. ..$ hyperid : num 103047
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta47"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b47"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[47] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[47] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta48 :List of 11
## .. .. .. ..$ hyperid : num 103048
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta48"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b48"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[48] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[48] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta49 :List of 11
## .. .. .. ..$ hyperid : num 103049
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta49"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b49"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[49] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[49] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta50 :List of 11
## .. .. .. ..$ hyperid : num 103050
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta50"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b50"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[50] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[50] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta51 :List of 11
## .. .. .. ..$ hyperid : num 103051
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta51"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b51"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[51] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[51] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta52 :List of 11
## .. .. .. ..$ hyperid : num 103052
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta52"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b52"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[52] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[52] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta53 :List of 11
## .. .. .. ..$ hyperid : num 103053
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta53"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b53"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[53] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[53] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta54 :List of 11
## .. .. .. ..$ hyperid : num 103054
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta54"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b54"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[54] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[54] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta55 :List of 11
## .. .. .. ..$ hyperid : num 103055
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta55"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b55"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[55] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[55] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta56 :List of 11
## .. .. .. ..$ hyperid : num 103056
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta56"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b56"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[56] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[56] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta57 :List of 11
## .. .. .. ..$ hyperid : num 103057
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta57"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b57"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[57] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[57] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta58 :List of 11
## .. .. .. ..$ hyperid : num 103058
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta58"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b58"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[58] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[58] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta59 :List of 11
## .. .. .. ..$ hyperid : num 103059
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta59"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b59"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[59] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[59] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta60 :List of 11
## .. .. .. ..$ hyperid : num 103060
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta60"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b60"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[60] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[60] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta61 :List of 11
## .. .. .. ..$ hyperid : num 103061
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta61"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b61"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[61] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[61] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta62 :List of 11
## .. .. .. ..$ hyperid : num 103062
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta62"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b62"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[62] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[62] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta63 :List of 11
## .. .. .. ..$ hyperid : num 103063
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta63"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b63"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[63] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[63] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta64 :List of 11
## .. .. .. ..$ hyperid : num 103064
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta64"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b64"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[64] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[64] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta65 :List of 11
## .. .. .. ..$ hyperid : num 103065
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta65"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b65"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[65] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[65] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta66 :List of 11
## .. .. .. ..$ hyperid : num 103066
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta66"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b66"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[66] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[66] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta67 :List of 11
## .. .. .. ..$ hyperid : num 103067
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta67"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b67"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[67] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[67] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta68 :List of 11
## .. .. .. ..$ hyperid : num 103068
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta68"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b68"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[68] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[68] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta69 :List of 11
## .. .. .. ..$ hyperid : num 103069
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta69"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b69"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[69] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[69] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta70 :List of 11
## .. .. .. ..$ hyperid : num 103070
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta70"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b70"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[70] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[70] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta71 :List of 11
## .. .. .. ..$ hyperid : num 103071
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta71"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b71"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[71] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[71] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta72 :List of 11
## .. .. .. ..$ hyperid : num 103072
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta72"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b72"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[72] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[72] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta73 :List of 11
## .. .. .. ..$ hyperid : num 103073
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta73"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b73"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[73] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[73] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta74 :List of 11
## .. .. .. ..$ hyperid : num 103074
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta74"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b74"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[74] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[74] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta75 :List of 11
## .. .. .. ..$ hyperid : num 103075
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta75"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b75"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[75] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[75] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta76 :List of 11
## .. .. .. ..$ hyperid : num 103076
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta76"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b76"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[76] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[76] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta77 :List of 11
## .. .. .. ..$ hyperid : num 103077
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta77"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b77"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[77] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[77] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta78 :List of 11
## .. .. .. ..$ hyperid : num 103078
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta78"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b78"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[78] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[78] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta79 :List of 11
## .. .. .. ..$ hyperid : num 103079
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta79"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b79"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[79] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[79] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta80 :List of 11
## .. .. .. ..$ hyperid : num 103080
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta80"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b80"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[80] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[80] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta81 :List of 11
## .. .. .. ..$ hyperid : num 103081
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta81"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b81"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[81] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[81] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta82 :List of 11
## .. .. .. ..$ hyperid : num 103082
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta82"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b82"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[82] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[82] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta83 :List of 11
## .. .. .. ..$ hyperid : num 103083
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta83"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b83"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[83] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[83] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta84 :List of 11
## .. .. .. ..$ hyperid : num 103084
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta84"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b84"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[84] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[84] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta85 :List of 11
## .. .. .. ..$ hyperid : num 103085
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta85"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b85"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[85] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[85] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta86 :List of 11
## .. .. .. ..$ hyperid : num 103086
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta86"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b86"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[86] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[86] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta87 :List of 11
## .. .. .. ..$ hyperid : num 103087
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta87"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b87"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[87] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[87] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta88 :List of 11
## .. .. .. ..$ hyperid : num 103088
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta88"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b88"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[88] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[88] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta89 :List of 11
## .. .. .. ..$ hyperid : num 103089
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta89"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b89"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[89] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[89] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta90 :List of 11
## .. .. .. ..$ hyperid : num 103090
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta90"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b90"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[90] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[90] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta91 :List of 11
## .. .. .. ..$ hyperid : num 103091
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta91"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b91"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[91] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[91] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta92 :List of 11
## .. .. .. ..$ hyperid : num 103092
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta92"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b92"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[92] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[92] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta93 :List of 11
## .. .. .. ..$ hyperid : num 103093
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta93"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b93"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[93] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[93] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta94 :List of 11
## .. .. .. ..$ hyperid : num 103094
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta94"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b94"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[94] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[94] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta95 :List of 11
## .. .. .. ..$ hyperid : num 103095
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta95"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b95"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[95] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[95] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta96 :List of 11
## .. .. .. ..$ hyperid : num 103096
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta96"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b96"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[96] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[96] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta97 :List of 11
## .. .. .. ..$ hyperid : num 103097
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta97"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b97"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[97] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[97] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta98 :List of 11
## .. .. .. ..$ hyperid : num 103098
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta98"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b98"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[98] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[98] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta99 :List of 11
## .. .. .. ..$ hyperid : num 103099
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta99"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b99"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[99] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[99] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. [list output truncated]
## .. ..- attr(*, "class")= chr [1:2] "ctrl_lp_scale" "inla_ctrl_object"
## ..$ control.pardiso :List of 4
## .. ..$ verbose : logi FALSE
## .. ..$ debug : logi FALSE
## .. ..$ parallel.reordering: logi TRUE
## .. ..$ nrhs : num -1
## .. ..- attr(*, "class")= chr [1:2] "ctrl_pardiso" "inla_ctrl_object"
## ..$ only.hyperparam : logi FALSE
## ..$ inla.call : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/inla.mkl.run"
## ..$ num.threads : chr "24:1"
## ..$ keep : logi FALSE
## ..$ silent : logi TRUE
## ..$ inla.mode : chr "compact"
## ..$ safe : logi TRUE
## ..$ debug : logi FALSE
## ..$ .parent.frame :<environment: R_GlobalEnv>
## $ call : chr [1:14] "inla.core(formula = formula, family = family, contrasts = contrasts, " " data = data, quantiles = quantiles, E = E, offset = offset, " " scale = scale, weights = weights, Ntrials = Ntrials, strata = strata, " " lp.scale = lp.scale, link.covariates = link.covariates, verbose = verbose, " ...
## $ model.matrix :Formal class 'dsparseModelMatrix' [package "MatrixModels"] with 8 slots
## .. ..@ i : int(0)
## .. ..@ p : int 0
## .. ..@ Dim : int [1:2] 28678 0
## .. ..@ Dimnames :List of 2
## .. .. ..$ : chr [1:28678] "1" "2" "3" "4" ...
## .. .. ..$ : NULL
## .. ..@ x : num(0)
## .. ..@ factors : list()
## .. ..@ assign : int(0)
## .. ..@ contrasts: Named list()
## $ bru_iinla :List of 5
## ..$ log :Class 'bru_log' hidden list of 2
## .. ..$ log : chr [1:7] "2024-04-16 20:34:04.154536: iinla: Evaluate component inputs" "2024-04-16 20:34:04.214523: iinla: Evaluate component linearisations" "2024-04-16 20:34:07.136899: iinla: Evaluate component simplifications" "2024-04-16 20:34:10.029442: iinla: Evaluate predictor linearisation" ...
## .. ..$ bookmarks: Named int 0
## .. .. ..- attr(*, "names")= chr "iinla"
## ..$ states :List of 1
## .. ..$ :List of 3
## .. .. ..$ Intercept : num 0
## .. .. ..$ SpeedLimit: num 0
## .. .. ..$ field : num [1:28676] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ inla_stack:List of 3
## .. ..$ A :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ p : int [1:28679] 0 14534 29068 29072 29079 29079 29079 29079 29080 29081 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ data :List of 5
## .. .. ..$ data :'data.frame': 14534 obs. of 6 variables:
## .. .. .. ..$ BRU.response: num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ BRU.E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. ..$ nrow : int 14534
## .. .. ..$ ncol : Named int [1:6] 1 1 1 1 1 1
## .. .. .. ..- attr(*, "names")= chr [1:6] "BRU.response" "BRU.E" "BRU.Ntrials" "BRU.weights" ...
## .. .. ..$ names:List of 6
## .. .. .. ..$ BRU.response: chr "BRU.response"
## .. .. .. ..$ BRU.E : chr "BRU.E"
## .. .. .. ..$ BRU.Ntrials : chr "BRU.Ntrials"
## .. .. .. ..$ BRU.weights : chr "BRU.weights"
## .. .. .. ..$ BRU.scale : chr "BRU.scale"
## .. .. .. ..$ BRU.offset : chr "BRU.offset"
## .. .. ..$ index:List of 1
## .. .. .. ..$ : num [1:14534] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. ..- attr(*, "class")= chr "inla.data.stack.info"
## .. ..$ effects:List of 5
## .. .. ..$ data :'data.frame': 28678 obs. of 9 variables:
## .. .. .. ..$ Intercept : num [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ Intercept.group : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ Intercept.repl : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit : num [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit.group: int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit.repl : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ field : int [1:28678] NA NA 1 2 3 4 5 6 7 8 ...
## .. .. .. ..$ field.group : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ field.repl : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. .. ..$ nrow : int 28678
## .. .. ..$ ncol : Named int [1:9] 1 1 1 1 1 1 1 1 1
## .. .. .. ..- attr(*, "names")= chr [1:9] "Intercept" "Intercept.group" "Intercept.repl" "SpeedLimit" ...
## .. .. ..$ names:List of 9
## .. .. .. ..$ Intercept : chr "Intercept"
## .. .. .. ..$ Intercept.group : chr "Intercept.group"
## .. .. .. ..$ Intercept.repl : chr "Intercept.repl"
## .. .. .. ..$ SpeedLimit : chr "SpeedLimit"
## .. .. .. ..$ SpeedLimit.group: chr "SpeedLimit.group"
## .. .. .. ..$ SpeedLimit.repl : chr "SpeedLimit.repl"
## .. .. .. ..$ field : chr "field"
## .. .. .. ..$ field.group : chr "field.group"
## .. .. .. ..$ field.repl : chr "field.repl"
## .. .. ..$ index:List of 3
## .. .. .. ..$ : int 1
## .. .. .. ..$ : int 2
## .. .. .. ..$ : int [1:28676] 3 4 5 6 7 8 9 10 11 12 ...
## .. .. ..- attr(*, "class")= chr "inla.data.stack.info"
## .. ..- attr(*, "class")= chr "inla.data.stack"
## ..$ track :'data.frame': 28682 obs. of 6 variables:
## .. ..$ effect : chr [1:28682] "Intercept" "SpeedLimit" "field" "field" ...
## .. ..$ index : num [1:28682] 1 1 1 2 3 4 5 6 7 8 ...
## .. ..$ iteration : num [1:28682] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ mode : num [1:28682] 20.88 3.062 -2.774 -3.361 -0.724 ...
## .. ..$ sd : num [1:28682] 0.374 0.28 5.101 3.575 7.03 ...
## .. ..$ new_linearisation: num [1:28682] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ timings :'data.frame': 2 obs. of 3 variables:
## .. ..$ Task : chr [1:2] "Preprocess" "Run inla()"
## .. ..$ Iteration: num [1:2] 1 1
## .. ..$ Time : 'difftime' num [1:2] 20.2336986064911 7.57818412780762
## .. .. ..- attr(*, "units")= chr "secs"
## $ bru_timings :'data.frame': 3 obs. of 3 variables:
## ..$ Task : chr [1:3] "Preprocess" "Preprocess" "Run inla()"
## ..$ Iteration: num [1:3] 0 1 1
## ..$ Time : 'difftime' num [1:3] 0.0625474452972412 20.2336986064911 7.57818412780762
## .. ..- attr(*, "units")= chr "secs"
## $ bru_info :List of 6
## ..$ method : chr "bru"
## ..$ model :List of 2
## .. ..$ effects:List of 3
## .. .. ..$ Intercept :List of 12
## .. .. .. ..$ label : chr "Intercept"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : num 1
## .. .. .. .. .. ..$ label : chr "Intercept"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper : list()
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "linear"
## .. .. .. .. ..$ type : chr "linear"
## .. .. .. .. ..$ n : int 1
## .. .. .. .. ..$ values : num 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "Intercept.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "Intercept.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f038669a10>
## .. .. .. ..$ fcall : language "f"(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main : list()
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 1
## .. .. .. .. .. .. ..$ n_inla : num 1
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 1 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..$ SpeedLimit:List of 12
## .. .. .. ..$ label : chr "SpeedLimit"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(SpeedLimit, model = BRU_SpeedLimit_main_model, ngroup = 1, nrep = 1, values = BRU_SpeedLimit_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : symbol SpeedLimit
## .. .. .. .. .. ..$ label : chr "SpeedLimit"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper : list()
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "linear"
## .. .. .. .. ..$ type : chr "linear"
## .. .. .. .. ..$ n : int 1
## .. .. .. .. ..$ values : num 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "SpeedLimit.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "SpeedLimit.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f0386438f0>
## .. .. .. ..$ fcall : language "f"(SpeedLimit, model = BRU_SpeedLimit_main_model, ngroup = 1, nrep = 1, values = BRU_SpeedLimit_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main : list()
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 1
## .. .. .. .. .. .. ..$ n_inla : num 1
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 1 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..$ field :List of 12
## .. .. .. ..$ label : chr "field"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(field, model = BRU_field_main_model, replicate = field.repl, ngroup = 1, nrep = 4L, values = BRU_field_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : symbol loc
## .. .. .. .. .. ..$ label : chr "field"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ model:List of 21
## .. .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. .. ..$ m_alpha : int 1
## .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. .. ..$ doubles :List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ matrices_less : num [1:32048] 0.0797 0 0 0.1564 0 ...
## .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. .. .. .. ..$ characters:List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. .. ..$ matrices :List of 1
## .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:6] 2 2 0.1 0 0 0.1
## .. .. .. .. .. .. .. .. .. ..$ smatrices : list()
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. ..$ theta.prior.mean : num [1:2] 0 0.223
## .. .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. .. ..$ theta.prior.prec : num [1:2, 1:2] 0.1 0 0 0.1
## .. .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. ..$ stationary : logi TRUE
## .. .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_inla_rspde" "bru_mapper" "list"
## .. .. .. .. ..$ model :List of 21
## .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. ..$ m_alpha : int 1
## .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. ..$ doubles :List of 4
## .. .. .. .. .. .. .. .. .. ..$ matrices_less : num [1:32048] 0.0797 0 0 0.1564 0 ...
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. .. .. ..$ characters:List of 4
## .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. ..$ matrices :List of 1
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:6] 2 2 0.1 0 0 0.1
## .. .. .. .. .. .. .. .. ..$ smatrices : list()
## .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. ..$ theta.prior.mean : num [1:2] 0 0.223
## .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. ..$ theta.prior.prec : num [1:2, 1:2] 0.1 0 0 0.1
## .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. ..$ stationary : logi TRUE
## .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. ..$ type : chr "cgeneric"
## .. .. .. .. ..$ n : num 7169
## .. .. .. .. ..$ values : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "field.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : language data_rspde_bru_stat[["repl"]]
## .. .. .. .. .. ..$ label : chr "field.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 4
## .. .. .. .. .. ..$ levels : chr [1:4] "1" "2" "3" "4"
## .. .. .. .. .. ..$ factor_mapping: chr "full"
## .. .. .. .. .. ..$ indexed : logi TRUE
## .. .. .. .. .. ..$ n : int 4
## .. .. .. .. .. ..- attr(*, "class")= chr [1:4] "bru_mapper_factor_index" "bru_mapper_factor" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : int 4
## .. .. .. .. ..$ values : int [1:4] 1 2 3 4
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f038625ad0>
## .. .. .. ..$ fcall : language "f"(field, model = BRU_field_main_model, replicate = field.repl, ngroup = 1, nrep = 4L, values = BRU_field_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main :List of 1
## .. .. .. .. .. .. .. .. ..$ model:List of 21
## .. .. .. .. .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ m_alpha : int 1
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ doubles :List of 4
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ matrices_less : num [1:32048] 0.0797 0 0 0.1564 0 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ characters:List of 4
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_stat_int_model"
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ matrices :List of 1
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:6] 2 2 0.1 0 0 0.1
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ smatrices : list()
## .. .. .. .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean : num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec : num [1:2, 1:2] 0.1 0 0 0.1
## .. .. .. .. .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:2] 0 0.223
## .. .. .. .. .. .. .. .. .. ..$ stationary : logi TRUE
## .. .. .. .. .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_inla_rspde" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 4
## .. .. .. .. .. .. .. .. ..$ levels : chr [1:4] "1" "2" "3" "4"
## .. .. .. .. .. .. .. .. ..$ factor_mapping: chr "full"
## .. .. .. .. .. .. .. .. ..$ indexed : logi TRUE
## .. .. .. .. .. .. .. .. ..$ n : int 4
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:4] "bru_mapper_factor_index" "bru_mapper_factor" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 7169
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: int 4
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 7169
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: int 4
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int [1:4] 1 2 3 4
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int [1:4] 1 2 3 4
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 28676
## .. .. .. .. .. .. ..$ n_inla : num 28676
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 28676 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 28676
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..- attr(*, "class")= chr [1:2] "component_list" "list"
## .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. ..$ formula:Class 'formula' language BRU_response ~ f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_v| __truncated__ ...
## .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. ..- attr(*, "class")= chr [1:2] "bru_model" "list"
## ..$ lhoods :List of 1
## .. ..$ :List of 17
## .. .. ..$ family : chr "gaussian"
## .. .. ..$ formula :Class 'formula' language speed ~ .
## .. .. .. .. ..- attr(*, ".Environment")=<environment: 0x57f038f288a0>
## .. .. ..$ response_data :List of 4
## .. .. .. ..$ BRU_response: num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ BRU_E : num 1
## .. .. .. ..$ BRU_Ntrials : num 1
## .. .. .. ..$ BRU_scale : num 1
## .. .. ..$ data :List of 8
## .. .. .. ..$ speed : num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ SpeedLimit : num [1:14534] -0.101 -0.617 -0.617 -0.617 -0.927 ...
## .. .. .. ..$ .coord_x : num [1:14534] -122 -122 -122 -122 -122 ...
## .. .. .. ..$ .coord_y : num [1:14534] 37.8 37.8 37.8 37.8 37.8 ...
## .. .. .. ..$ .edge_number : num [1:14534] 1 4 6 6 9 14 14 14 18 20 ...
## .. .. .. ..$ .distance_on_edge: num [1:14534] 0.437 0.144 0.252 0.658 0.601 ...
## .. .. .. ..$ .group : chr [1:14534] "1" "1" "1" "1" ...
## .. .. .. ..$ loc : num [1:14534, 1:2] 1 4 6 6 9 14 14 14 18 20 ...
## .. .. .. ..- attr(*, "class")= chr [1:2] "metric_graph_data" "list"
## .. .. ..$ E : num 1
## .. .. ..$ Ntrials : num 1
## .. .. ..$ weights : num 1
## .. .. ..$ scale : num 1
## .. .. ..$ samplers : NULL
## .. .. ..$ linear : logi TRUE
## .. .. ..$ expr : NULL
## .. .. ..$ response : chr "BRU_response"
## .. .. ..$ inla.family : chr "gaussian"
## .. .. ..$ domain : NULL
## .. .. ..$ used :List of 2
## .. .. .. ..$ effect: chr [1:3] "Intercept" "SpeedLimit" "field"
## .. .. .. ..$ latent: chr(0)
## .. .. .. ..- attr(*, "class")= chr "bru_used"
## .. .. ..$ allow_combine : logi TRUE
## .. .. ..$ control.family: NULL
## .. .. ..- attr(*, "class")= chr [1:2] "bru_like" "list"
## .. ..- attr(*, "class")= chr [1:2] "bru_like_list" "list"
## ..$ options :List of 14
## .. ..$ bru_verbose : num 0
## .. ..$ bru_verbose_store: num Inf
## .. ..$ bru_max_iter : num 1
## .. ..$ bru_run : logi TRUE
## .. ..$ bru_int_args :List of 3
## .. .. ..$ method: chr "stable"
## .. .. ..$ nsub1 : num 30
## .. .. ..$ nsub2 : num 9
## .. ..$ bru_method :List of 6
## .. .. ..$ taylor : chr "pandemic"
## .. .. ..$ search : chr "all"
## .. .. ..$ factor : num 1.62
## .. .. ..$ rel_tol : num 0.1
## .. .. ..$ max_step : num 2
## .. .. ..$ line_opt_method: chr "onestep"
## .. ..$ bru_compress_cp : logi TRUE
## .. ..$ bru_debug : logi FALSE
## .. ..$ E : num 1
## .. ..$ Ntrials : num 1
## .. ..$ control.compute :List of 3
## .. .. ..$ config: logi TRUE
## .. .. ..$ dic : logi TRUE
## .. .. ..$ waic : logi TRUE
## .. ..$ control.inla :List of 1
## .. .. ..$ int.strategy: chr "auto"
## .. ..$ control.fixed :List of 1
## .. .. ..$ expand.factor.strategy: chr "inla"
## .. ..$ verbose : logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "bru_options" "list"
## ..$ inlabru_version: Named chr "2.10.1.9002"
## .. ..- attr(*, "names")= chr "version"
## ..$ INLA_version : Named chr "24.02.09"
## .. ..- attr(*, "names")= chr "version"
## ..- attr(*, "class")= chr [1:2] "bru_info" "list"
## - attr(*, "class")= chr [1:3] "bru" "iinla" "inla"stat.time.fin <- Sys.time()
print(stat.time.fin - stat.time.ini)## Time difference of 33.29961 secs
summary(rspde_fit_stat)## inlabru version: 2.10.1.9002
## INLA version: 24.02.09
## Components:
## Intercept: main = linear(1), group = exchangeable(1L), replicate = iid(1L)
## SpeedLimit: main = linear(SpeedLimit), group = exchangeable(1L), replicate = iid(1L)
## field: main = cgeneric(loc), group = exchangeable(1L), replicate = iid(data_rspde_bru_stat[["repl"]])
## Likelihoods:
## Family: 'gaussian'
## Data class: 'metric_graph_data', 'list'
## Predictor: speed ~ .
## Time used:
## Pre = 0.347, Running = 6, Post = 1.18, Total = 7.53
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 20.883 0.374 20.163 20.877 21.638 20.877 0
## SpeedLimit 3.060 0.280 2.517 3.061 3.597 3.062 0
##
## Random effects:
## Name Model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant 0.5quant
## Precision for the Gaussian observations 0.012 0.000 0.012 0.012
## Theta1 for field 2.853 0.070 2.717 2.852
## Theta2 for field -1.089 0.217 -1.508 -1.091
## 0.975quant mode
## Precision for the Gaussian observations 0.012 0.012
## Theta1 for field 2.993 2.849
## Theta2 for field -0.656 -1.102
##
## Deviance Information Criterion (DIC) ...............: 108508.57
## Deviance Information Criterion (DIC, saturated) ....: 17495.41
## Effective number of parameters .....................: 2958.58
##
## Watanabe-Akaike information criterion (WAIC) ...: 108680.49
## Effective number of parameters .................: 2622.83
##
## Marginal log-Likelihood: -55592.19
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
fit.rspde = rspde.result(rspde_fit_stat, "field", rspde_model_stat)
summary(fit.rspde)## mean sd 0.025quant 0.5quant 0.975quant mode
## std.dev 17.385100 1.214710 15.157300 17.327600 19.925300 17.194100
## range 0.344434 0.075392 0.222049 0.335527 0.516965 0.318117
nonstat.time.ini <- Sys.time()
################################################################################
############################# NON STATIONARY MODEL #############################
################################################################################
B.sigma = cbind(0, 1, 0, mesh$SpeedLimit, 0)
B.range = cbind(0, 0, 1, 0, mesh$SpeedLimit)
init.vec.theta = c(fit.rspde$summary.log.std.dev$mode, fit.rspde$summary.log.range$mode, rep(0, (ncol(B.sigma)-3)))
rspde_model_nonstat <- rspde.metric_graph(sf_graph,
start.theta = init.vec.theta,
theta.prior.mean = init.vec.theta,
B.sigma = B.sigma,
B.range = B.range,
parameterization = "matern",
nu = 0.5)str(rspde_model_nonstat)
## List of 21
## $ f :List of 3
## ..$ model : chr "cgeneric"
## ..$ n : int 7169
## ..$ cgeneric:List of 5
## .. ..$ model: chr "inla_cgeneric_rspde_nonstat_int_model"
## .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. ..$ n : int 7169
## .. ..$ debug: logi FALSE
## .. ..$ data :List of 5
## .. .. ..$ ints :List of 5
## .. .. .. ..$ n : int 7169
## .. .. .. ..$ debug : int 0
## .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. ..$ alpha : int 1
## .. .. ..$ doubles :List of 2
## .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. ..$ theta.prior.mean: num [1:4] 2.85 -1.1 0 0
## .. .. ..$ characters:List of 3
## .. .. .. ..$ model : chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. ..$ matrices :List of 3
## .. .. .. ..$ B_tau : num [1:35847] 7169 5 -0.693 -1 0.5 ...
## .. .. .. ..$ B_kappa : num [1:35847] 7169 5 0.693 0 -1 ...
## .. .. .. ..$ theta.prior.prec: num [1:18] 4 4 0.1 0 0 0 0 0.1 0 0 ...
## .. .. ..$ smatrices :List of 2
## .. .. .. ..$ C: num [1:21510] 7169 7169 7169 0 1 ...
## .. .. .. ..$ G: num [1:74640] 7169 7169 24879 0 1 ...
## .. ..- attr(*, "class")= chr "inla.cgeneric"
## $ cgeneric_type : chr "int_alpha"
## $ nu : num 0.5
## $ theta.prior.mean : num [1:4] 2.85 -1.1 0 0
## $ prior.nu :List of 4
## ..$ loglocation: num -5e-06
## ..$ mean : num 1
## ..$ prec : num 3
## ..$ logscale : num 1
## $ theta.prior.prec : num [1:4, 1:4] 0.1 0 0 0 0 0.1 0 0 0 0 ...
## $ start.nu : num 0.5
## $ integer.nu : logi TRUE
## $ start.theta : num [1:4] 2.85 -1.1 0 0
## $ stationary : logi FALSE
## $ rspde.order : num 2
## $ dim : num 1
## $ est_nu : logi FALSE
## $ nu.upper.bound : num 2
## $ prior.nu.dist : chr "lognormal"
## $ debug : logi FALSE
## $ type.rational.approx: chr "chebfun"
## $ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## $ fem_mesh :List of 4
## ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. ..@ factors : list()
## ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. ..@ factors : list()
## ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. ..@ factors : list()
## ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : NULL
## .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. ..@ factors : list()
## $ parameterization : chr "matern"
## $ n.spde : int 7169
## - attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"data_rspde_bru_nonstat <- graph_data_rspde(rspde_model_nonstat,
repl = ".all",
loc_name = "loc")str(data_rspde_bru_nonstat)
## List of 4
## $ data :List of 8
## ..$ speed : num [1:14534] 0 12.9 24.1 32.2 0 ...
## ..$ SpeedLimit : num [1:14534] -0.101 -0.617 -0.617 -0.617 -0.927 ...
## ..$ .coord_x : num [1:14534] -122 -122 -122 -122 -122 ...
## ..$ .coord_y : num [1:14534] 37.8 37.8 37.8 37.8 37.8 ...
## ..$ .edge_number : num [1:14534] 1 4 6 6 9 14 14 14 18 20 ...
## ..$ .distance_on_edge: num [1:14534] 0.437 0.144 0.252 0.658 0.601 ...
## ..$ .group : chr [1:14534] "1" "1" "1" "1" ...
## ..$ loc : num [1:14534, 1:2] 1 4 6 6 9 14 14 14 18 20 ...
## ..- attr(*, "class")= chr [1:2] "metric_graph_data" "list"
## $ index:List of 3
## ..$ field : int [1:28676] 1 2 3 4 5 6 7 8 9 10 ...
## ..$ field.group: int [1:28676] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ field.repl : int [1:28676] 1 1 1 1 1 1 1 1 1 1 ...
## ..- attr(*, "class")= chr [1:2] "inla_rspde_index" "list"
## ..- attr(*, "rspde.order")= num 0
## ..- attr(*, "integer_nu")= logi TRUE
## ..- attr(*, "n.mesh")= int 7169
## ..- attr(*, "name")= chr "field"
## ..- attr(*, "n.group")= int 1
## ..- attr(*, "n.repl")= int 4
## $ repl : chr [1:14534] "1" "1" "1" "1" ...
## $ basis:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. ..@ i : int [1:29068] 0 555 1905 1906 0 1050 1471 1472 1473 1905 ...
## .. ..@ p : int [1:28677] 0 4 11 11 11 11 12 13 15 15 ...
## .. ..@ Dim : int [1:2] 14534 28676
## .. ..@ Dimnames:List of 2
## .. .. ..$ : NULL
## .. .. ..$ : NULL
## .. ..@ x : num [1:29068] 0.563 0.0495 0.3595 0.7935 0.437 ...
## .. ..@ factors : list()cmp_nonstat = speed ~ -1 +
Intercept(1) +
SpeedLimit +
field(loc, model = rspde_model_nonstat,
replicate = data_rspde_bru_nonstat[["repl"]])
rspde_fit_nonstat <-
bru(cmp_nonstat,
data = data_rspde_bru_nonstat[["data"]],
family = "gaussian",
options = list(verbose = FALSE)
)str(rspde_fit_nonstat)
## List of 55
## $ names.fixed : chr [1:2] "Intercept" "SpeedLimit"
## $ summary.fixed :'data.frame': 2 obs. of 7 variables:
## ..$ mean : num [1:2] 20.79 2.93
## ..$ sd : num [1:2] 0.392 0.271
## ..$ 0.025quant: num [1:2] 20.03 2.36
## ..$ 0.5quant : num [1:2] 20.79 2.94
## ..$ 0.975quant: num [1:2] 21.57 3.44
## ..$ mode : num [1:2] 20.79 2.94
## ..$ kld : num [1:2] 3.73e-08 1.61e-07
## $ marginals.fixed :List of 2
## ..$ Intercept : num [1:43, 1:2] 19 19.2 19.5 19.9 20 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ SpeedLimit: num [1:43, 1:2] 1.82 1.93 2.07 2.26 2.36 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ summary.lincomb :'data.frame': 0 obs. of 0 variables
## $ marginals.lincomb : NULL
## $ size.lincomb : NULL
## $ summary.lincomb.derived :'data.frame': 0 obs. of 0 variables
## $ marginals.lincomb.derived : NULL
## $ size.lincomb.derived : NULL
## $ mlik : num [1:2, 1] -55601 -55598
## ..- attr(*, "dimnames")=List of 2
## .. ..$ : chr [1:2] "log marginal-likelihood (integration)" "log marginal-likelihood (Gaussian)"
## .. ..$ : NULL
## $ cpo :List of 3
## ..$ cpo : logi(0)
## ..$ pit : logi(0)
## ..$ failure: logi(0)
## $ gcpo :List of 5
## ..$ gcpo : NULL
## ..$ kld : NULL
## ..$ mean : NULL
## ..$ sd : NULL
## ..$ groups: NULL
## $ po :List of 1
## ..$ po: num [1:14534] 0.00804 0.03513 0.03594 0.03163 0.02249 ...
## $ waic :List of 4
## ..$ waic : num 108688
## ..$ p.eff : num 2602
## ..$ local.waic : num [1:14534] 10.7 6.99 6.87 7.55 8.97 ...
## ..$ local.p.eff: num [1:14534] 0.529 0.144 0.111 0.324 0.69 ...
## $ residuals :List of 1
## ..$ deviance.residuals: num [1:14534] -1.961 -0.735 0.687 0.93 -1.347 ...
## $ model.random : chr "CGeneric"
## $ summary.random :List of 1
## ..$ field:'data.frame': 28676 obs. of 8 variables:
## .. ..$ ID : num [1:28676] 1 2 3 4 5 6 7 8 9 10 ...
## .. ..$ mean : num [1:28676] -2.617 -3.238 -0.649 -0.288 -0.397 ...
## .. ..$ sd : num [1:28676] 5.07 3.55 6.94 7.57 8.39 ...
## .. ..$ 0.025quant: num [1:28676] -12.6 -10.2 -14.3 -15.1 -16.9 ...
## .. ..$ 0.5quant : num [1:28676] -2.613 -3.237 -0.649 -0.287 -0.396 ...
## .. ..$ 0.975quant: num [1:28676] 7.32 3.72 12.96 14.55 16.07 ...
## .. ..$ mode : num [1:28676] -2.613 -3.237 -0.649 -0.287 -0.396 ...
## .. ..$ kld : num [1:28676] 1.55e-10 2.78e-11 4.86e-12 5.52e-12 6.44e-12 ...
## $ marginals.random :List of 1
## ..$ field:List of 28676
## .. ..$ index.1 : num [1:43, 1:2] -24.3 -21.6 -18.3 -14.4 -12.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.2 : num [1:43, 1:2] -18.4 -16.5 -14.2 -11.5 -10.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.3 : num [1:43, 1:2] -30.3 -26.5 -22.1 -16.8 -14.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.4 : num [1:43, 1:2] -32.6 -28.5 -23.7 -17.9 -15.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.5 : num [1:43, 1:2] -36.3 -31.7 -26.4 -19.9 -16.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.6 : num [1:43, 1:2] -34.4 -30.6 -26.2 -20.7 -18.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.7 : num [1:43, 1:2] -25.4 -22 -18 -13.3 -11 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.8 : num [1:43, 1:2] -18.71 -16.17 -13.22 -9.63 -7.91 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.9 : num [1:43, 1:2] -37 -32.4 -27.1 -20.7 -17.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.10 : num [1:43, 1:2] -36.9 -32.1 -26.6 -20 -16.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.11 : num [1:43, 1:2] -43.3 -37.6 -31 -23 -19.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.12 : num [1:43, 1:2] -48.3 -41.9 -34.5 -25.5 -21.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.13 : num [1:43, 1:2] -26.1 -23 -19.5 -15.2 -13.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.14 : num [1:43, 1:2] -33.8 -30.1 -25.8 -20.5 -18 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.15 : num [1:43, 1:2] -24.9 -21.8 -18.2 -13.9 -11.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.16 : num [1:43, 1:2] -26.5 -23.1 -19.1 -14.3 -12 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.17 : num [1:43, 1:2] -14.71 -12.64 -10.23 -7.31 -5.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.18 : num [1:43, 1:2] -31.5 -27.4 -22.6 -16.8 -14 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.19 : num [1:43, 1:2] -23.6 -20.5 -16.9 -12.5 -10.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.20 : num [1:43, 1:2] -41.9 -36.4 -30.1 -22.4 -18.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.21 : num [1:43, 1:2] -49.6 -43 -35.4 -26.2 -21.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.22 : num [1:43, 1:2] -40.8 -35.3 -28.9 -21.2 -17.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.23 : num [1:43, 1:2] -46.8 -40.8 -34 -25.7 -21.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.24 : num [1:43, 1:2] -44.7 -39 -32.4 -24.4 -20.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.25 : num [1:43, 1:2] -26.59 -22.34 -17.43 -11.47 -8.61 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.26 : num [1:43, 1:2] -15.83 -13.43 -10.66 -7.29 -5.67 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.27 : num [1:43, 1:2] -43.9 -38.4 -32.1 -24.5 -20.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.28 : num [1:43, 1:2] -38.3 -33.5 -27.9 -21.1 -17.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.29 : num [1:43, 1:2] -26.8 -24.3 -21.4 -17.9 -16.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.30 : num [1:43, 1:2] -12.09 -9.49 -6.47 -2.8 -1.04 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.31 : num [1:43, 1:2] -40.9 -36.1 -30.6 -23.8 -20.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.32 : num [1:43, 1:2] -41.6 -36.5 -30.5 -23.3 -19.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.33 : num [1:43, 1:2] -47.5 -41.6 -34.9 -26.8 -22.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.34 : num [1:43, 1:2] -23.3 -20.7 -17.8 -14.2 -12.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.35 : num [1:43, 1:2] -53.9 -47 -39 -29.3 -24.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.36 : num [1:43, 1:2] -42.7 -37.2 -30.8 -23 -19.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.37 : num [1:43, 1:2] -54.6 -47.6 -39.5 -29.8 -25.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.38 : num [1:43, 1:2] -54.3 -47.4 -39.4 -29.7 -25.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.39 : num [1:43, 1:2] -50.5 -44.1 -36.7 -27.8 -23.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.40 : num [1:43, 1:2] -43.4 -38 -31.7 -24.1 -20.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.41 : num [1:43, 1:2] -48.8 -42.8 -35.9 -27.5 -23.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.42 : num [1:43, 1:2] -44.1 -38.5 -32 -24.2 -20.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.43 : num [1:43, 1:2] -54.5 -47.8 -40.1 -30.7 -26.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.44 : num [1:43, 1:2] -42.3 -36.8 -30.3 -22.6 -18.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.45 : num [1:43, 1:2] -40.3 -35.5 -29.9 -23.2 -20 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.46 : num [1:43, 1:2] -30.1 -27.7 -24.9 -21.5 -19.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.47 : num [1:43, 1:2] -32 -28.7 -24.9 -20.2 -18 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.48 : num [1:43, 1:2] -23.2 -19.9 -16.1 -11.5 -9.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.49 : num [1:43, 1:2] -13.95 -11.29 -8.2 -4.44 -2.64 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.50 : num [1:43, 1:2] -26.4 -22.7 -18.5 -13.3 -10.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.51 : num [1:43, 1:2] -15.1 -13.2 -10.9 -8.2 -6.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.52 : num [1:43, 1:2] -27.2 -24.9 -22.3 -19.2 -17.7 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.53 : num [1:43, 1:2] -22.9 -20.8 -18.4 -15.5 -14.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.54 : num [1:43, 1:2] -38.2 -34.3 -29.7 -24.2 -21.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.55 : num [1:43, 1:2] -45.4 -40.2 -34.1 -26.8 -23.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.56 : num [1:43, 1:2] -39.5 -35.6 -31.1 -25.6 -23 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.57 : num [1:43, 1:2] -42.3 -38.3 -33.6 -27.9 -25.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.58 : num [1:43, 1:2] -34.1 -30.5 -26.4 -21.3 -18.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.59 : num [1:43, 1:2] -32.6 -28.6 -23.9 -18.2 -15.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.60 : num [1:43, 1:2] -40 -35.5 -30.4 -24.2 -21.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.61 : num [1:43, 1:2] -34.4 -29.9 -24.7 -18.4 -15.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.62 : num [1:43, 1:2] -23.4 -20.1 -16.2 -11.5 -9.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.63 : num [1:43, 1:2] -38.4 -33.8 -28.6 -22.2 -19.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.64 : num [1:43, 1:2] -37.7 -33.1 -27.7 -21.2 -18.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.65 : num [1:43, 1:2] -33.1 -29.1 -24.4 -18.8 -16.1 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.66 : num [1:43, 1:2] -29.7 -25.2 -20 -13.6 -10.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.67 : num [1:43, 1:2] -7.51 -5.308 -2.753 0.351 1.84 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.68 : num [1:43, 1:2] -23.1 -21 -18.5 -15.4 -13.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.69 : num [1:43, 1:2] -32.3 -28.6 -24.2 -19 -16.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.70 : num [1:43, 1:2] -20.39 -17.57 -14.3 -10.32 -8.41 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.71 : num [1:43, 1:2] -15.76 -14 -11.97 -9.49 -8.3 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.72 : num [1:43, 1:2] -14.05 -12.34 -10.36 -7.95 -6.79 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.73 : num [1:43, 1:2] -29.91 -24.22 -17.65 -9.71 -5.92 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.74 : num [1:43, 1:2] 4.64 6.49 8.64 11.25 12.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.75 : num [1:43, 1:2] -28.4 -25.7 -22.4 -18.5 -16.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.76 : num [1:43, 1:2] -44.2 -39.9 -35 -29.1 -26.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.77 : num [1:43, 1:2] -38.2 -33.5 -28.1 -21.6 -18.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.78 : num [1:43, 1:2] -20.5 -18.1 -15.4 -12.1 -10.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.79 : num [1:43, 1:2] -22.2 -20.4 -18.3 -15.7 -14.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.80 : num [1:43, 1:2] -22 -19.7 -17.1 -14 -12.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.81 : num [1:43, 1:2] -20.6 -18.9 -17 -14.6 -13.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.82 : num [1:43, 1:2] -21.77 -18.8 -15.36 -11.18 -9.17 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.83 : num [1:43, 1:2] -32.8 -29.8 -26.3 -22 -20 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.84 : num [1:43, 1:2] -37.4 -33 -28 -21.9 -19 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.85 : num [1:43, 1:2] -37.5 -33 -27.9 -21.6 -18.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.86 : num [1:43, 1:2] -35.2 -31 -26.1 -20.2 -17.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.87 : num [1:43, 1:2] -40.4 -35.5 -29.9 -23.1 -19.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.88 : num [1:43, 1:2] -22.4 -20 -17.3 -14 -12.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.89 : num [1:43, 1:2] -29.9 -26.1 -21.8 -16.4 -13.9 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.90 : num [1:43, 1:2] -23.4 -21 -18.2 -14.9 -13.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.91 : num [1:43, 1:2] -35 -31.3 -27.1 -21.9 -19.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.92 : num [1:43, 1:2] -26.1 -23.2 -19.9 -16 -14 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.93 : num [1:43, 1:2] -32 -28.4 -24.3 -19.2 -16.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.94 : num [1:43, 1:2] -44.6 -38.2 -30.7 -21.7 -17.4 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.95 : num [1:43, 1:2] -34.1 -29.3 -23.8 -17.1 -13.8 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.96 : num [1:43, 1:2] -42.9 -36.6 -29.3 -20.4 -16.2 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.97 : num [1:43, 1:2] -30.32 -25.32 -19.56 -12.59 -9.27 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.98 : num [1:43, 1:2] -37.3 -32.8 -27.7 -21.5 -18.5 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. ..$ index.99 : num [1:43, 1:2] -38.3 -33.9 -28.7 -22.5 -19.6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : NULL
## .. .. .. ..$ : chr [1:2] "x" "y"
## .. .. [list output truncated]
## $ size.random :List of 1
## ..$ :List of 5
## .. ..$ n : num 7169
## .. ..$ N : num 7169
## .. ..$ Ntotal: num 28676
## .. ..$ ngroup: num 1
## .. ..$ nrep : num 4
## $ summary.linear.predictor :'data.frame': 43212 obs. of 7 variables:
## ..$ mean : num [1:43212] 17.6 15.1 23.3 27 10.7 ...
## ..$ sd : num [1:43212] 3.43 6.35 6.23 6.77 6.02 ...
## ..$ 0.025quant: num [1:43212] 10.88 2.63 11.08 13.76 -1.07 ...
## ..$ 0.5quant : num [1:43212] 17.6 15.1 23.3 27 10.7 ...
## ..$ 0.975quant: num [1:43212] 24.3 27.5 35.5 40.3 22.5 ...
## ..$ mode : num [1:43212] 17.6 15.1 23.3 27 10.7 ...
## ..$ kld : num [1:43212] 7.80e-11 2.92e-11 2.80e-11 3.36e-11 7.87e-11 ...
## $ marginals.linear.predictor : NULL
## $ summary.fitted.values :'data.frame': 43212 obs. of 6 variables:
## ..$ mean : num [1:43212] 17.6 15.1 23.3 27 10.7 ...
## ..$ sd : num [1:43212] 3.43 6.35 6.23 6.77 6.02 ...
## ..$ 0.025quant: num [1:43212] 10.88 2.63 11.08 13.76 -1.07 ...
## ..$ 0.5quant : num [1:43212] 17.6 15.1 23.3 27 10.7 ...
## ..$ 0.975quant: num [1:43212] 24.3 27.5 35.5 40.3 22.5 ...
## ..$ mode : num [1:43212] 17.6 15.1 23.3 27 10.8 ...
## $ marginals.fitted.values : NULL
## $ size.linear.predictor :List of 5
## ..$ n : num 28678
## ..$ N : num 28678
## ..$ Ntotal: num 43212
## ..$ ngroup: num 1
## ..$ nrep : num 2
## $ summary.hyperpar :'data.frame': 5 obs. of 6 variables:
## ..$ mean : num [1:5] 0.012 2.995 -0.765 0.369 0.739
## ..$ sd : num [1:5] 0.000184 0.126594 0.320292 0.158555 0.310948
## ..$ 0.025quant: num [1:5] 0.0116 2.7501 -1.3796 0.0568 0.1244
## ..$ 0.5quant : num [1:5] 0.012 2.993 -0.77 0.369 0.74
## ..$ 0.975quant: num [1:5] 0.0123 3.2486 -0.1186 0.6811 1.3488
## ..$ mode : num [1:5] 0.0119 2.987 -0.7938 0.3696 0.7431
## $ marginals.hyperpar :List of 5
## ..$ Precision for the Gaussian observations: num [1:43, 1:2] 0.0112 0.0113 0.0114 0.0115 0.0116 ...
## .. ..- attr(*, "hyperid")= chr "65001|INLA.Data1"
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta1 for field : num [1:43, 1:2] 2.47 2.53 2.61 2.7 2.75 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta2 for field : num [1:43, 1:2] -2.08 -1.91 -1.72 -1.49 -1.38 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta3 for field : num [1:43, 1:2] -0.3112 -0.2242 -0.1238 -0.002 0.0568 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta4 for field : num [1:43, 1:2] -0.60189 -0.42997 -0.23188 0.00858 0.12445 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ internal.summary.hyperpar :'data.frame': 5 obs. of 6 variables:
## ..$ mean : num [1:5] -4.427 2.995 -0.764 0.369 0.739
## ..$ sd : num [1:5] 0.0154 0.1266 0.3203 0.1586 0.311
## ..$ 0.025quant: num [1:5] -4.4566 2.7501 -1.3796 0.0568 0.1244
## ..$ 0.5quant : num [1:5] -4.427 2.993 -0.77 0.369 0.74
## ..$ 0.975quant: num [1:5] -4.396 3.249 -0.119 0.681 1.349
## ..$ mode : num [1:5] -4.427 2.987 -0.792 0.37 0.743
## $ internal.marginals.hyperpar:List of 5
## ..$ Log precision for the Gaussian observations: num [1:43, 1:2] -4.49 -4.48 -4.47 -4.46 -4.46 ...
## .. ..- attr(*, "hyperid")= chr "65001|INLA.Data1"
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta1 for field : num [1:43, 1:2] 2.47 2.53 2.61 2.7 2.75 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta2 for field : num [1:43, 1:2] -2.08 -1.91 -1.72 -1.49 -1.38 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta3 for field : num [1:43, 1:2] -0.3112 -0.2242 -0.1238 -0.002 0.0568 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## ..$ Theta4 for field : num [1:43, 1:2] -0.60189 -0.42997 -0.23188 0.00858 0.12445 ...
## .. ..- attr(*, "hyperid")= chr ""
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : NULL
## .. .. ..$ : chr [1:2] "x" "y"
## $ offset.linear.predictor : num [1:43212] 0 0 0 0 0 0 0 0 0 0 ...
## $ model.spde2.blc : NULL
## $ summary.spde2.blc : list()
## $ marginals.spde2.blc : NULL
## $ size.spde2.blc : NULL
## $ model.spde3.blc : NULL
## $ summary.spde3.blc : list()
## $ marginals.spde3.blc : NULL
## $ size.spde3.blc : NULL
## $ logfile : chr [1:840] "[PANUA] PARDISO License is expired." "[PANUA] Please obtain a new PARDISO license at https://www.panua.ch/products/pardiso" " Read ntt 24 1 with max.threads 24" " Found num.threads = 24:1 max_threads = 24" ...
## $ misc :List of 22
## ..$ cov.intern : num [1:5, 1:5] 0.000238 -0.000455 -0.001441 -0.000529 -0.001009 ...
## ..$ cor.intern : num [1:5, 1:5] 1 -0.232 -0.289 -0.214 -0.207 ...
## ..$ cov.intern.eigenvalues : num [1:5] 0.000167 0.00037 0.000215 0.018175 0.226986
## ..$ cov.intern.eigenvectors : num [1:5, 1:5] 0.86325 -0.47329 0.173 -0.00366 0.02931 ...
## ..$ reordering : int [1:28678] 26861 27406 27012 26997 26995 27056 27071 27072 27069 27055 ...
## ..$ theta.tags : chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## ..$ log.posterior.mode : num -55587
## ..$ stdev.corr.negative : num [1:5] 0.938 1.023 1.001 1.51 0.974
## ..$ stdev.corr.positive : num [1:5] 1.066 0.978 0.999 0.662 1.027
## ..$ to.theta :List of 5
## .. ..$ Log precision for the Gaussian observations:function (x)
## .. ..$ Theta1 for field :function (x)
## .. ..$ Theta2 for field :function (x)
## .. ..$ Theta3 for field :function (x)
## .. ..$ Theta4 for field :function (x)
## ..$ from.theta :List of 5
## .. ..$ Log precision for the Gaussian observations:function (x)
## .. ..$ Theta1 for field :function (x)
## .. ..$ Theta2 for field :function (x)
## .. ..$ Theta3 for field :function (x)
## .. ..$ Theta4 for field :function (x)
## ..$ mode.status : num 0
## ..$ lincomb.derived.correlation.matrix: NULL
## ..$ lincomb.derived.covariance.matrix : NULL
## ..$ opt.directions : num [1:5, 1:5] -0.049 0.244 0.592 0.292 0.709 ...
## .. ..- attr(*, "dimnames")=List of 2
## .. .. ..$ : chr [1:5] "theta:1" "theta:2" "theta:3" "theta:4" ...
## .. .. ..$ : chr [1:5] "dir:1" "dir:2" "dir:3" "dir:4" ...
## ..$ configs :List of 17
## .. ..$ .preopt : logi TRUE
## .. ..$ lite : logi FALSE
## .. ..$ mpred : int 14534
## .. ..$ npred : int 28678
## .. ..$ mnpred : int 43212
## .. ..$ Npred : int 14534
## .. ..$ n : int 28678
## .. ..$ nz : int 80857
## .. ..$ prior_nz : int 64098
## .. ..$ ntheta : int 5
## .. ..$ nconfig : int 27
## .. ..$ offsets : num [1:43212] 0 0 0 0 0 0 0 0 0 0 ...
## .. ..$ contents :List of 3
## .. .. ..$ tag : chr [1:5] "APredictor" "Predictor" "field" "Intercept" ...
## .. .. ..$ start : int [1:5] 1 14535 43213 71889 71890
## .. .. ..$ length: int [1:5] 14534 28678 28676 1 1
## .. ..$ A :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:28678] 2 3 4 5 6 7 8 9 10 11 ...
## .. .. .. ..@ j : int [1:28678] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:28678] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ pA :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ j : int [1:58122] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ config :List of 27
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.427 2.986 -0.796 0.37 0.743
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -4.6
## .. .. .. ..$ log.posterior.orig: num 0
## .. .. .. ..$ mean : num [1:28678] -2.608 -3.23 -0.681 -0.318 -0.429 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.608 -3.23 -0.681 -0.318 -0.429 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04249 -0.00814 0.10029 0.09551 -0.03613 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.67 2.67 12.58 48.03 40.33 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0296 -0.0158 0.0641 0.0955 -0.0361 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2104 -0.026 0.0103 0.0617 -0.1285 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15.1 23.3 27 10.8 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.788 2.932 -2.608 -3.23 -0.681 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.398 2.97 -0.791 0.369 0.744
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.49
## .. .. .. ..$ log.posterior.orig: num -3.22
## .. .. .. ..$ mean : num [1:28678] -2.583 -3.223 -0.68 -0.318 -0.427 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.583 -3.223 -0.68 -0.318 -0.427 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.044 -0.00852 0.10377 0.09912 -0.0375 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.81 2.61 12.18 46.39 38.97 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0307 -0.0164 0.0665 0.0991 -0.0375 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2168 -0.0268 0.0107 0.0637 -0.1327 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15.1 23.3 27 10.8 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.79 2.93 -2.58 -3.22 -0.68 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.453 3 -0.802 0.37 0.743
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.12
## .. .. .. ..$ log.posterior.orig: num -2.85
## .. .. .. ..$ mean : num [1:28678] -2.631 -3.237 -0.681 -0.318 -0.431 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.631 -3.237 -0.681 -0.318 -0.431 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0412 -0.00783 0.09733 0.09245 -0.03497 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.45 2.72 12.95 49.53 41.57 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0286 -0.0153 0.0621 0.0925 -0.035 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.20485 -0.02531 0.00991 0.05987 -0.12494 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.3 27 10.7 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.788 2.933 -2.631 -3.237 -0.681 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.451 2.948 -0.784 0.372 0.745
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.16
## .. .. .. ..$ log.posterior.orig: num -2.89
## .. .. .. ..$ mean : num [1:28678] -2.254 -3.077 -0.684 -0.325 -0.427 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.254 -3.077 -0.684 -0.325 -0.427 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0449 -0.0098 0.1055 0.1045 -0.0395 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.57 2.95 12.25 44.22 37.18 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0323 -0.0173 0.0701 0.1045 -0.0395 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2082 -0.0265 0.0118 0.0641 -0.1306 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.1 23.1 26.7 11.2 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.76 2.998 -2.254 -3.077 -0.684 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.403 3.026 -0.809 0.367 0.742
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.35
## .. .. .. ..$ log.posterior.orig: num -3.08
## .. .. .. ..$ mean : num [1:28678] -2.997 -3.382 -0.675 -0.31 -0.429 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.997 -3.382 -0.675 -0.31 -0.429 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0402 -0.00654 0.09545 0.08693 -0.03287 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.83 2.35 12.94 52.39 43.92 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.027 -0.0144 0.0584 0.0869 -0.0329 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21249 -0.02551 0.00869 0.0591 -0.12603 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.4 15 23.4 27.4 10.3 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.815 2.863 -2.997 -3.382 -0.675 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.426 2.987 -0.798 0.402 0.728
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.4
## .. .. .. ..$ log.posterior.orig: num -3.13
## .. .. .. ..$ mean : num [1:28678] -2.561 -3.153 -0.674 -0.318 -0.434 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.561 -3.153 -0.674 -0.318 -0.434 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04285 -0.00859 0.10323 0.09986 -0.03778 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.52 2.73 12.29 46.07 38.7 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.03 -0.0162 0.067 0.0999 -0.0378 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2112 -0.0266 0.0104 0.062 -0.1295 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.7 15.1 23.3 27 10.8 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.772 2.905 -2.561 -3.153 -0.674 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.429 2.986 -0.795 0.337 0.759
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.28
## .. .. .. ..$ log.posterior.orig: num -3.01
## .. .. .. ..$ mean : num [1:28678] -2.623 -3.274 -0.675 -0.304 -0.413 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.623 -3.274 -0.675 -0.304 -0.413 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04213 -0.00771 0.09747 0.09135 -0.03455 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.81 2.61 12.88 50.08 42.03 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0293 -0.0154 0.0613 0.0914 -0.0345 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2095 -0.0253 0.0102 0.0614 -0.1275 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.3 27 10.7 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.77 2.972 -2.623 -3.274 -0.675 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.424 2.945 -0.948 0.433 0.883
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.42
## .. .. .. ..$ log.posterior.orig: num -2.15
## .. .. .. ..$ mean : num [1:28678] -2.762 -3.177 -0.662 -0.294 -0.453 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.762 -3.177 -0.662 -0.294 -0.453 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0407 -0.00697 0.09677 0.08918 -0.03342 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.5 2.4 12.8 46.8 38.7 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0278 -0.0146 0.0605 0.0892 -0.0334 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2091 -0.0261 0.011 0.061 -0.1262 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.4 15 23.2 27.1 10.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.705 3.154 -2.762 -3.177 -0.662 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.436 3.08 -0.45 0.226 0.425
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.92
## .. .. .. ..$ log.posterior.orig: num -3.65
## .. .. .. ..$ mean : num [1:28678] -2.294 -3.284 -0.535 -0.197 -0.208 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.294 -3.284 -0.535 -0.197 -0.208 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0473 -0.0112 0.1108 0.1129 -0.0432 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 23.7 3.23 12.03 46.86 40.16 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0345 -0.0187 0.0749 0.1129 -0.0432 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2131 -0.029 0.0087 0.0637 -0.1346 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 18 15.3 23.4 26.8 11.4 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.967 2.526 -2.294 -3.284 -0.535 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.4374 3.2982 -0.0149 0.7612 1.5096
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -7.99
## .. .. .. ..$ log.posterior.orig: num -4.72
## .. .. .. ..$ mean : num [1:28678] -1.9272 -2.8933 -0.2665 0.0801 0.0572 ...
## .. .. .. ..$ improved.mean : num [1:28678] -1.9272 -2.8933 -0.2665 0.0801 0.0572 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.047 -0.011 0.1104 0.1121 -0.0427 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 23.78 3.17 12.01 46.5 39.74 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0343 -0.0186 0.0746 0.1121 -0.0427 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21247 -0.02804 0.00905 0.06352 -0.13429 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 18 15.2 23.4 26.8 11.4 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.574 2.576 -1.927 -2.893 -0.267 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.41808 2.69043 -1.53738 -0.00163 0.01712
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -9.64
## .. .. .. ..$ log.posterior.orig: num -6.38
## .. .. .. ..$ mean : num [1:28678] -2.999 -3.267 -0.55 -0.191 -0.399 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.999 -3.267 -0.55 -0.191 -0.399 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0396 -0.0058 0.0928 0.0826 -0.0308 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.9 2.06 12.99 44.87 36.52 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0266 -0.0135 0.0563 0.0826 -0.0308 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2083 -0.0282 0.0133 0.0629 -0.1233 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.3 15.2 23 27 10.2 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.75 3.59 -3 -3.27 -0.55 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.437 3.191 -0.299 0.465 0.95
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.4
## .. .. .. ..$ log.posterior.orig: num -2.13
## .. .. .. ..$ mean : num [1:28678] -2.3931 -3.2573 -0.4428 -0.0982 -0.1158 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.3931 -3.2573 -0.4428 -0.0982 -0.1158 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04459 -0.00954 0.10393 0.10235 -0.03904 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.86 3.05 12.55 50.63 43.23 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0318 -0.0171 0.0681 0.1024 -0.039 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21069 -0.0273 0.00791 0.06121 -0.13071 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.2 23.5 27 11 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.828 2.536 -2.393 -3.257 -0.443 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.423 2.859 -1.203 0.216 0.487
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.68
## .. .. .. ..$ log.posterior.orig: num -2.41
## .. .. .. ..$ mean : num [1:28678] -3.081 -3.347 -0.679 -0.302 -0.489 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.081 -3.347 -0.679 -0.302 -0.489 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.03865 -0.00561 0.09093 0.08039 -0.03009 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 27.65 2.12 13.32 49.89 41.04 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0257 -0.0133 0.0546 0.0804 -0.0301 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.207 -0.0261 0.0106 0.0593 -0.122 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.2 15 23.3 27.2 10.2 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.775 3.261 -3.081 -3.347 -0.679 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.427 2.92 -0.981 0.153 0.268
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.22
## .. .. .. ..$ log.posterior.orig: num -1.95
## .. .. .. ..$ mean : num [1:28678] -2.821 -3.357 -0.735 -0.37 -0.495 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.821 -3.357 -0.735 -0.37 -0.495 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04131 -0.00757 0.09817 0.09259 -0.03512 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.3 2.59 12.77 49.92 41.99 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0284 -0.0152 0.062 0.0926 -0.0351 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.20954 -0.02611 0.00966 0.06045 -0.1264 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15.1 23.3 27.1 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.883 2.926 -2.821 -3.357 -0.735 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.43 3.132 -0.523 0.586 1.14
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.2
## .. .. .. ..$ log.posterior.orig: num -2.93
## .. .. .. ..$ mean : num [1:28678] -2.561 -3.143 -0.576 -0.221 -0.31 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.561 -3.143 -0.576 -0.221 -0.31 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0419 -0.0081 0.1002 0.0957 -0.0362 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.05 2.71 12.63 49.44 41.68 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0291 -0.0157 0.0641 0.0957 -0.0362 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2096 -0.02553 0.00923 0.06013 -0.12774 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.4 27.1 10.7 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.695 2.781 -2.561 -3.143 -0.576 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.449 2.885 -0.969 0.126 0.284
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.65
## .. .. .. ..$ log.posterior.orig: num -2.38
## .. .. .. ..$ mean : num [1:28678] -2.516 -3.274 -0.74 -0.371 -0.486 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.516 -3.274 -0.74 -0.371 -0.486 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04309 -0.00863 0.10006 0.09662 -0.03665 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.41 2.81 12.72 48.04 40.44 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0305 -0.0161 0.0646 0.0966 -0.0366 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2069 -0.0259 0.0109 0.0624 -0.1275 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.7 15.1 23.2 26.9 10.9 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.86 3.01 -2.52 -3.27 -0.74 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.453 3.096 -0.511 0.56 1.156
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.59
## .. .. .. ..$ log.posterior.orig: num -3.32
## .. .. .. ..$ mean : num [1:28678] -2.264 -3.061 -0.58 -0.222 -0.299 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.264 -3.061 -0.58 -0.222 -0.299 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04375 -0.00918 0.1022 0.09985 -0.03782 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.16 2.93 12.58 47.58 40.14 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0312 -0.0166 0.0669 0.0999 -0.0378 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.207 -0.0254 0.0105 0.062 -0.1288 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.1 23.2 26.9 11.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.67 2.87 -2.26 -3.06 -0.58 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.457 3.157 -0.289 0.496 0.937
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.84
## .. .. .. ..$ log.posterior.orig: num -3.57
## .. .. .. ..$ mean : num [1:28678] -2.041 -3.046 -0.447 -0.11 -0.129 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.041 -3.046 -0.447 -0.11 -0.129 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0474 -0.0116 0.1121 0.1157 -0.0441 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 23.75 3.32 11.98 45.17 38.64 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0349 -0.0191 0.0769 0.1157 -0.0441 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2094 -0.0285 0.0094 0.0635 -0.1334 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 18.1 15.3 23.3 26.7 11.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.793 2.567 -2.041 -3.046 -0.447 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.443 2.825 -1.193 0.247 0.474
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.63
## .. .. .. ..$ log.posterior.orig: num -3.37
## .. .. .. ..$ mean : num [1:28678] -2.716 -3.169 -0.679 -0.312 -0.491 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.716 -3.169 -0.679 -0.312 -0.491 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04083 -0.00727 0.09721 0.09081 -0.03402 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.47 2.47 12.73 44.61 36.77 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0281 -0.0148 0.0616 0.0908 -0.034 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2059 -0.027 0.0121 0.0619 -0.125 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15.2 23.1 26.9 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.754 3.29 -2.716 -3.169 -0.679 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.403 2.906 -0.975 0.124 0.283
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.6
## .. .. .. ..$ log.posterior.orig: num -2.34
## .. .. .. ..$ mean : num [1:28678] -2.827 -3.405 -0.736 -0.365 -0.485 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.827 -3.405 -0.736 -0.365 -0.485 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04222 -0.00748 0.0985 0.09179 -0.03481 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.69 2.49 12.68 50.34 42.33 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.029 -0.0153 0.0614 0.0918 -0.0348 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21418 -0.02618 0.00986 0.06189 -0.12895 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15 23.3 27.1 10.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.882 2.953 -2.827 -3.405 -0.736 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.407 3.118 -0.517 0.557 1.155
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.41
## .. .. .. ..$ log.posterior.orig: num -3.14
## .. .. .. ..$ mean : num [1:28678] -2.571 -3.193 -0.574 -0.213 -0.296 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.571 -3.193 -0.574 -0.213 -0.296 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04284 -0.00802 0.10053 0.09487 -0.03593 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.44 2.61 12.55 49.84 42 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0297 -0.0158 0.0636 0.0949 -0.0359 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21424 -0.02561 0.00942 0.06158 -0.13034 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.6 15 23.4 27.1 10.7 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.697 2.812 -2.571 -3.193 -0.574 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.411 3.178 -0.295 0.494 0.937
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.59
## .. .. .. ..$ log.posterior.orig: num -3.32
## .. .. .. ..$ mean : num [1:28678] -2.335 -3.184 -0.443 -0.104 -0.128 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.335 -3.184 -0.443 -0.104 -0.128 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0463 -0.0103 0.1099 0.1099 -0.0419 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.03 3.03 11.95 47.3 40.41 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0332 -0.0181 0.0731 0.1099 -0.0419 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21686 -0.0287 0.00833 0.06322 -0.13518 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.9 15.2 23.5 27 11.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.817 2.507 -2.335 -3.184 -0.443 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.397 2.846 -1.199 0.245 0.474
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.31
## .. .. .. ..$ log.posterior.orig: num -3.04
## .. .. .. ..$ mean : num [1:28678] -3.033 -3.293 -0.678 -0.307 -0.493 ...
## .. .. .. ..$ improved.mean : num [1:28678] -3.033 -3.293 -0.678 -0.307 -0.493 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04008 -0.00618 0.09583 0.08628 -0.03232 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 26.73 2.14 12.71 46.73 38.48 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0268 -0.0141 0.0585 0.0863 -0.0323 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2131 -0.0274 0.011 0.0613 -0.1263 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.3 15.1 23.2 27.2 10.3 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.778 3.232 -3.033 -3.293 -0.678 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.433 3.143 -0.283 0.467 0.952
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -7.45
## .. .. .. ..$ log.posterior.orig: num -4.18
## .. .. .. ..$ mean : num [1:28678] -2.0569 -3.105 -0.4415 -0.0988 -0.1102 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.0569 -3.105 -0.4415 -0.0988 -0.1102 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.0484 -0.0116 0.1122 0.1147 -0.0438 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 23.18 3.22 11.91 45.54 38.95 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0356 -0.0192 0.0762 0.1147 -0.0438 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.21406 -0.02868 0.00955 0.06501 -0.13615 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 18 15.3 23.3 26.7 11.5 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.804 2.598 -2.057 -3.105 -0.442 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.42 2.811 -1.187 0.218 0.489
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -7.21
## .. .. .. ..$ log.posterior.orig: num -3.94
## .. .. .. ..$ mean : num [1:28678] -2.719 -3.212 -0.684 -0.31 -0.488 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.719 -3.212 -0.684 -0.31 -0.488 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04173 -0.00718 0.09754 0.09003 -0.03373 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 25.86 2.37 12.65 44.97 37.06 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0287 -0.0149 0.0611 0.09 -0.0337 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.2105 -0.0271 0.0123 0.0633 -0.1275 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.5 15.1 23.1 26.9 10.6 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.749 3.317 -2.719 -3.212 -0.684 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.424 2.872 -0.965 0.155 0.27
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -5.94
## .. .. .. ..$ log.posterior.orig: num -2.67
## .. .. .. ..$ mean : num [1:28678] -2.469 -3.212 -0.739 -0.377 -0.493 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.469 -3.212 -0.739 -0.377 -0.493 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04473 -0.00937 0.10571 0.10373 -0.03936 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.57 2.81 12.12 44.93 37.85 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0318 -0.017 0.0694 0.1037 -0.0394 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.213 -0.0272 0.0114 0.0644 -0.1319 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.1 23.2 26.8 11 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.858 2.985 -2.469 -3.212 -0.739 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. ..$ :List of 15
## .. .. .. ..$ theta : Named num [1:5] -4.427 3.084 -0.507 0.589 1.143
## .. .. .. .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## .. .. .. ..$ log.posterior : num -6.76
## .. .. .. ..$ log.posterior.orig: num -3.49
## .. .. .. ..$ mean : num [1:28678] -2.212 -2.998 -0.579 -0.227 -0.307 ...
## .. .. .. ..$ improved.mean : num [1:28678] -2.212 -2.998 -0.579 -0.227 -0.307 ...
## .. .. .. ..$ skewness : logi [1:28678] NA NA NA NA NA NA ...
## .. .. .. ..$ Q :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 0.04542 -0.00996 0.10802 0.1072 -0.04062 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qinv :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:80857] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:80857] 24.33 2.92 11.99 44.5 37.57 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ Qprior :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:64098] 0 0 1 2 2 3 2 4 5 6 ...
## .. .. .. .. .. ..@ p : int [1:28679] 0 1 3 4 6 8 9 10 11 12 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 28678 28678
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:64098] 0.0325 -0.0176 0.0718 0.1072 -0.0406 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ cpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "skewness"
## .. .. .. ..$ gcpodens.moments : num[0 , 1:3]
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "mean" "variance" "log.theta.correction"
## .. .. .. ..$ arg.str : NULL
## .. .. .. ..$ ll.info : num [1:14534, 1:3] -0.213 -0.0267 0.011 0.0641 -0.1332 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:3] "gradient" "hessian" "deriv3"
## .. .. .. ..$ APredictor : num [1:14534, 1:2] 17.8 15.1 23.2 26.8 11.1 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. .. .. ..$ Predictor : num [1:28678, 1:2] 20.67 2.842 -2.212 -2.998 -0.579 ...
## .. .. .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..$ : chr [1:2] "mean" "variance"
## .. ..$ max.log.posterior: num -55587
## ..$ nfunc : num 644
## ..$ warnings : chr(0)
## ..$ opt.trace :List of 3
## .. ..$ f : Named num [1:96] 15453135 5779585 5778583 60357 60355 ...
## .. .. ..- attr(*, "names")= chr [1:96] "iter1" "iter2" "iter3" "iter4" ...
## .. ..$ nfunc: Named int [1:96] 1 7 11 14 15 16 21 23 28 29 ...
## .. .. ..- attr(*, "names")= chr [1:96] "iter1" "iter2" "iter3" "iter4" ...
## .. ..$ theta: num [1:96, 1:5] 4 3 3 -6 -6 ...
## .. .. ..- attr(*, "dimnames")=List of 2
## .. .. .. ..$ : chr [1:96] "iter1" "iter2" "iter3" "iter4" ...
## .. .. .. ..$ : chr [1:5] "theta1" "theta2" "theta3" "theta4" ...
## ..$ theta.mode : num [1:5] -4.427 2.986 -0.796 0.37 0.743
## ..$ linkfunctions :List of 2
## .. ..$ names: chr "identity"
## .. ..$ link : int [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ family : int [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## $ dic :List of 14
## ..$ dic : num 108523
## ..$ p.eff : num 2938
## ..$ mean.deviance : num 105585
## ..$ deviance.mean : num 102646
## ..$ dic.sat : num 17464
## ..$ mean.deviance.sat: num 14525
## ..$ deviance.mean.sat: num 11585
## ..$ family.dic : num 108523
## ..$ family.dic.sat : num 17466
## ..$ family.p.eff : num 2938
## ..$ family : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ local.dic : num [1:14534] 10.25 7.29 7.2 7.68 8.51 ...
## ..$ local.dic.sat : num [1:14534] 3.988 1.021 0.935 1.413 2.248 ...
## ..$ local.p.eff : num [1:14534] 0.143 0.481 0.463 0.547 0.435 ...
## $ mode :List of 5
## ..$ theta : Named num [1:5] -4.427 2.986 -0.796 0.37 0.743
## .. ..- attr(*, "names")= chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## ..$ x : num [1:71890] 17.6 15.1 23.3 27 10.8 ...
## ..$ theta.tags : chr [1:5] "Log precision for the Gaussian observations" "Theta1 for field" "Theta2 for field" "Theta3 for field" ...
## ..$ mode.status : num 0
## ..$ log.posterior.mode: num -55587
## $ joint.hyper :'data.frame': 27 obs. of 7 variables:
## ..$ Log precision for the Gaussian observations : num [1:27] -4.43 -4.4 -4.45 -4.45 -4.4 ...
## ..$ Theta1 for field : num [1:27] 2.99 2.97 3 2.95 3.03 ...
## ..$ Theta2 for field : num [1:27] -0.796 -0.791 -0.802 -0.784 -0.809 ...
## ..$ Theta3 for field : num [1:27] 0.37 0.369 0.37 0.372 0.367 ...
## ..$ Theta4 for field : num [1:27] 0.743 0.744 0.743 0.745 0.742 ...
## ..$ Log posterior density : num [1:27] -55603 -55606 -55605 -55606 -55606 ...
## ..$ Total integration weight (log.dens included): num [1:27] 0.1593 0.024 0.0348 0.0335 0.0277 ...
## $ nhyper : int 5
## $ version :List of 2
## ..$ inla.call: chr "GITCOMMIT [5829a3e4dca069df580255b6c91f39493b31af36 - Fri Feb 9 06:17:02 2024 +0300]"
## ..$ R.INLA : Named chr "24.02.09"
## .. ..- attr(*, "names")= chr "version"
## $ Q : NULL
## $ graph : NULL
## $ ok : logi TRUE
## $ cpu.used : Named num [1:4] 0.164 16.899 1.845 18.908
## ..- attr(*, "names")= chr [1:4] "Pre" "Running" "Post" "Total"
## $ all.hyper :List of 4
## ..$ predictor:List of 1
## .. ..$ hyper:List of 1
## .. .. ..$ theta:List of 9
## .. .. .. ..$ hyperid : num 53001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "log precision"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name: chr "prec"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 13.8
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1e+00 1e-05
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta:function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## ..$ family :List of 1
## .. ..$ :List of 4
## .. .. ..$ hyperid: chr "INLA.Data1"
## .. .. ..$ label : chr "gaussian"
## .. .. ..$ hyper :List of 2
## .. .. .. ..$ theta1:List of 11
## .. .. .. .. ..$ hyperid : num 65001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "prec"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "Precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "Log precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 4
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 1e+00 5e-05
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ theta2:List of 11
## .. .. .. .. ..$ hyperid : num 65002
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision offset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "precoffset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 72.1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "none"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ param : num(0)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ link :List of 1
## .. .. .. ..$ hyper: list()
## ..$ linear :List of 2
## .. ..$ :List of 3
## .. .. ..$ label : chr "Intercept"
## .. .. ..$ prior.mean: num 0
## .. .. ..$ prior.prec: num 0.001
## .. ..$ :List of 3
## .. .. ..$ label : chr "SpeedLimit"
## .. .. ..$ prior.mean: num 0
## .. .. ..$ prior.prec: num 0.001
## ..$ random :List of 3
## .. ..$ : NULL
## .. ..$ : NULL
## .. ..$ :List of 3
## .. .. ..$ hyperid : chr "field"
## .. .. ..$ hyper : NULL
## .. .. ..$ group.hyper:List of 1
## .. .. .. ..$ theta:List of 9
## .. .. .. .. ..$ hyperid : num 40001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "logit correlation"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name: chr "rho"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "normal"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 0 0.2
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x, REPLACE.ME.ngroup)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta:function (x, REPLACE.ME.ngroup)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## $ .args :List of 30
## ..$ formula :Class 'formula' language BRU.response ~ f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_v| __truncated__ ...
## ..$ family : chr "gaussian"
## ..$ data :List of 21
## .. ..$ BRU.response : num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. ..$ BRU.E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU.offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## .. ..$ Intercept : num [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ Intercept.group : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ Intercept.repl : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit : num [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit.group : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ SpeedLimit.repl : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. ..$ field : int [1:28678] NA NA 1 2 3 4 5 6 7 8 ...
## .. ..$ field.group : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. ..$ field.repl : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. ..$ BRU_Intercept_main_model : chr "linear"
## .. ..$ BRU_Intercept_values : num 1
## .. ..$ BRU_SpeedLimit_main_model: chr "linear"
## .. ..$ BRU_SpeedLimit_values : num 1
## .. ..$ BRU_field_main_model :List of 21
## .. .. ..$ f :List of 3
## .. .. .. ..$ model : chr "cgeneric"
## .. .. .. ..$ n : int 7169
## .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. ..$ n : int 7169
## .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. ..$ alpha : int 1
## .. .. .. .. .. ..$ doubles :List of 2
## .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. ..$ theta.prior.mean: num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. ..$ characters:List of 3
## .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. ..$ matrices :List of 3
## .. .. .. .. .. .. ..$ B_tau : num [1:35847] 7169 5 -0.693 -1 0.5 ...
## .. .. .. .. .. .. ..$ B_kappa : num [1:35847] 7169 5 0.693 0 -1 ...
## .. .. .. .. .. .. ..$ theta.prior.prec: num [1:18] 4 4 0.1 0 0 0 0 0.1 0 0 ...
## .. .. .. .. .. ..$ smatrices :List of 2
## .. .. .. .. .. .. ..$ C: num [1:21510] 7169 7169 7169 0 1 ...
## .. .. .. .. .. .. ..$ G: num [1:74640] 7169 7169 24879 0 1 ...
## .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. ..$ nu : num 0.5
## .. .. ..$ theta.prior.mean : num [1:4] 2.85 -1.1 0 0
## .. .. ..$ prior.nu :List of 4
## .. .. .. ..$ loglocation: num -5e-06
## .. .. .. ..$ mean : num 1
## .. .. .. ..$ prec : num 3
## .. .. .. ..$ logscale : num 1
## .. .. ..$ theta.prior.prec : num [1:4, 1:4] 0.1 0 0 0 0 0.1 0 0 0 0 ...
## .. .. ..$ start.nu : num 0.5
## .. .. ..$ integer.nu : logi TRUE
## .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. ..$ stationary : logi FALSE
## .. .. ..$ rspde.order : num 2
## .. .. ..$ dim : num 1
## .. .. ..$ est_nu : logi FALSE
## .. .. ..$ nu.upper.bound : num 2
## .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. ..$ debug : logi FALSE
## .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. ..$ fem_mesh :List of 4
## .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. ..@ factors : list()
## .. .. ..$ parameterization : chr "matern"
## .. .. ..$ n.spde : int 7169
## .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. ..$ BRU_field_values : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## ..$ quantiles : num [1:3] 0.025 0.5 0.975
## ..$ E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## ..$ verbose : logi FALSE
## ..$ control.compute :List of 18
## .. ..$ openmp.strategy : chr "default"
## .. ..$ hyperpar : logi TRUE
## .. ..$ return.marginals : logi TRUE
## .. ..$ return.marginals.predictor: logi FALSE
## .. ..$ dic : logi TRUE
## .. ..$ mlik : logi TRUE
## .. ..$ cpo : logi FALSE
## .. ..$ po : logi FALSE
## .. ..$ waic : logi TRUE
## .. ..$ residuals : logi FALSE
## .. ..$ q : logi FALSE
## .. ..$ config : logi TRUE
## .. ..$ likelihood.info : logi FALSE
## .. ..$ smtp : NULL
## .. ..$ graph : logi FALSE
## .. ..$ internal.opt : NULL
## .. ..$ save.memory : NULL
## .. ..$ control.gcpo :List of 14
## .. .. ..$ enable : logi FALSE
## .. .. ..$ num.level.sets : num -1
## .. .. ..$ size.max : num 32
## .. .. ..$ strategy : chr [1:2] "posterior" "prior"
## .. .. ..$ groups : NULL
## .. .. ..$ selection : NULL
## .. .. ..$ friends : NULL
## .. .. ..$ verbose : logi FALSE
## .. .. ..$ epsilon : num 0.005
## .. .. ..$ prior.diagonal : num 1e-04
## .. .. ..$ correct.hyperpar: logi TRUE
## .. .. ..$ keep : NULL
## .. .. ..$ remove : NULL
## .. .. ..$ remove.fixed : logi TRUE
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_gcpo" "inla_ctrl_object"
## .. ..- attr(*, "class")= chr [1:2] "ctrl_compute" "inla_ctrl_object"
## ..$ control.predictor:List of 12
## .. ..$ hyper :List of 1
## .. .. ..$ theta:List of 9
## .. .. .. ..$ hyperid : num 53001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "log precision"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name: chr "prec"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 13.8
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1e+00 1e-05
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta:function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. ..$ fixed : NULL
## .. ..$ prior : NULL
## .. ..$ param : NULL
## .. ..$ initial : NULL
## .. ..$ compute : logi TRUE
## .. ..$ cdf : NULL
## .. ..$ quantiles: NULL
## .. ..$ cross : NULL
## .. ..$ A :Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ j : int [1:58122] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ precision: num 3269017
## .. ..$ link : NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_predictor" "inla_ctrl_object"
## ..$ control.family :List of 1
## .. ..$ :List of 17
## .. .. ..$ dummy : num 0
## .. .. ..$ hyper :List of 2
## .. .. .. ..$ theta1:List of 11
## .. .. .. .. ..$ hyperid : num 65001
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "prec"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "Precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "Log precision for the Gaussian observations"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 4
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "loggamma"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ param : num [1:2] 1e+00 5e-05
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ theta2:List of 11
## .. .. .. .. ..$ hyperid : num 65002
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ name : chr "log precision offset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ short.name : chr "precoffset"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name : chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ output.name.intern: chr "NOT IN USE"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ initial : num 72.1
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ fixed : logi TRUE
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ prior : chr "none"
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ param : num(0)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. .. ..$ to.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. .. ..$ from.theta :function (x)
## .. .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ initial : NULL
## .. .. ..$ prior : NULL
## .. .. ..$ param : NULL
## .. .. ..$ fixed : NULL
## .. .. ..$ link : chr "default"
## .. .. ..$ sn.shape.max : num 5
## .. .. ..$ gev.scale.xi : num 0.1
## .. .. ..$ control.bgev : NULL
## .. .. ..$ cenpoisson.I : int [1:2] -1 -1
## .. .. ..$ beta.censor.value: num 0
## .. .. ..$ variant : int 0
## .. .. ..$ control.mix : NULL
## .. .. ..$ control.pom : NULL
## .. .. ..$ control.link :List of 10
## .. .. .. ..$ model : chr "default"
## .. .. .. ..$ order : NULL
## .. .. .. ..$ variant : NULL
## .. .. .. ..$ hyper : list()
## .. .. .. ..$ quantile: NULL
## .. .. .. ..$ a : num 1
## .. .. .. ..$ initial : NULL
## .. .. .. ..$ fixed : NULL
## .. .. .. ..$ prior : NULL
## .. .. .. ..$ param : NULL
## .. .. .. ..- attr(*, "class")= chr [1:2] "ctrl_link" "inla_ctrl_object"
## .. .. ..$ link.simple : chr "default"
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_family" "inla_ctrl_object"
## ..$ control.inla :List of 56
## .. ..$ strategy : chr "auto"
## .. ..$ int.strategy : chr "auto"
## .. ..$ int.design : NULL
## .. ..$ interpolator : chr "auto"
## .. ..$ fast : logi TRUE
## .. ..$ linear.correction : NULL
## .. ..$ h : num 0.005
## .. ..$ dz : num 0.75
## .. ..$ diff.logdens : num 6
## .. ..$ print.joint.hyper : logi TRUE
## .. ..$ force.diagonal : logi FALSE
## .. ..$ skip.configurations : logi TRUE
## .. ..$ mode.known : logi FALSE
## .. ..$ adjust.weights : logi TRUE
## .. ..$ tolerance : num 0.005
## .. ..$ tolerance.f : NULL
## .. ..$ tolerance.g : NULL
## .. ..$ tolerance.x : NULL
## .. ..$ tolerance.step : num 0.001
## .. ..$ restart : int 0
## .. ..$ optimiser : chr "default"
## .. ..$ verbose : NULL
## .. ..$ reordering : chr "auto"
## .. ..$ cpo.diff : NULL
## .. ..$ npoints : num 9
## .. ..$ cutoff : num 1e-04
## .. ..$ adapt.hessian.mode : NULL
## .. ..$ adapt.hessian.max.trials : NULL
## .. ..$ adapt.hessian.scale : NULL
## .. ..$ adaptive.max : int 25
## .. ..$ huge : logi FALSE
## .. ..$ step.len : num 0
## .. ..$ stencil : int 5
## .. ..$ lincomb.derived.correlation.matrix: logi FALSE
## .. ..$ diagonal : num 0
## .. ..$ numint.maxfeval : num 1e+05
## .. ..$ numint.relerr : num 1e-05
## .. ..$ numint.abserr : num 1e-06
## .. ..$ cmin : num -Inf
## .. ..$ b.strategy : chr "keep"
## .. ..$ step.factor : num -0.1
## .. ..$ global.node.factor : num 2
## .. ..$ global.node.degree : int 2147483647
## .. ..$ stupid.search : logi TRUE
## .. ..$ stupid.search.max.iter : int 1000
## .. ..$ stupid.search.factor : num 1.05
## .. ..$ control.vb :List of 8
## .. .. ..$ enable : chr "auto"
## .. .. ..$ strategy : chr [1:2] "mean" "variance"
## .. .. ..$ verbose : logi TRUE
## .. .. ..$ iter.max : num 25
## .. .. ..$ emergency : num 25
## .. .. ..$ f.enable.limit : num [1:4] 30 25 1024 768
## .. .. ..$ hessian.update : num 2
## .. .. ..$ hessian.strategy: chr [1:4] "default" "full" "partial" "diagonal"
## .. .. ..- attr(*, "class")= chr [1:2] "ctrl_vb" "inla_ctrl_object"
## .. ..$ num.gradient : chr "central"
## .. ..$ num.hessian : chr "central"
## .. ..$ optimise.strategy : chr "smart"
## .. ..$ use.directions : logi TRUE
## .. ..$ constr.marginal.diagonal : num 1.49e-08
## .. ..$ improved.simplified.laplace : logi FALSE
## .. ..$ parallel.linesearch : logi FALSE
## .. ..$ compute.initial.values : logi TRUE
## .. ..$ hessian.correct.skewness.only : logi TRUE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_inla" "inla_ctrl_object"
## ..$ control.fixed :List of 10
## .. ..$ cdf : NULL
## .. ..$ quantiles : NULL
## .. ..$ expand.factor.strategy: chr "inla"
## .. ..$ mean : num 0
## .. ..$ mean.intercept : num 0
## .. ..$ prec : num 0.001
## .. ..$ prec.intercept : num 0
## .. ..$ compute : logi TRUE
## .. ..$ correlation.matrix : logi FALSE
## .. ..$ remove.names : NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_fixed" "inla_ctrl_object"
## ..$ control.mode :List of 5
## .. ..$ result : NULL
## .. ..$ theta : NULL
## .. ..$ x : NULL
## .. ..$ restart: logi FALSE
## .. ..$ fixed : logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_mode" "inla_ctrl_object"
## ..$ control.expert :List of 6
## .. ..$ cpo.manual : logi FALSE
## .. ..$ cpo.idx : num -1
## .. ..$ disable.gaussian.check: logi FALSE
## .. ..$ jp : NULL
## .. ..$ dot.product.gain : logi FALSE
## .. ..$ globalconstr :List of 2
## .. .. ..$ A: NULL
## .. .. ..$ e: NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_expert" "inla_ctrl_object"
## ..$ control.lincomb :List of 1
## .. ..$ verbose: logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "ctrl_lincomb" "inla_ctrl_object"
## ..$ control.update :List of 1
## .. ..$ result: NULL
## .. ..- attr(*, "class")= chr [1:2] "ctrl_update" "inla_ctrl_object"
## ..$ control.lp.scale :List of 1
## .. ..$ hyper:List of 100
## .. .. ..$ theta1 :List of 11
## .. .. .. ..$ hyperid : num 103001
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta1"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b1"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[1] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[1] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta2 :List of 11
## .. .. .. ..$ hyperid : num 103002
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta2"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b2"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[2] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[2] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta3 :List of 11
## .. .. .. ..$ hyperid : num 103003
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta3"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b3"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[3] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[3] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta4 :List of 11
## .. .. .. ..$ hyperid : num 103004
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta4"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b4"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[4] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[4] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta5 :List of 11
## .. .. .. ..$ hyperid : num 103005
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta5"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b5"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[5] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[5] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta6 :List of 11
## .. .. .. ..$ hyperid : num 103006
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta6"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b6"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[6] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[6] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta7 :List of 11
## .. .. .. ..$ hyperid : num 103007
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta7"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b7"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[7] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[7] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta8 :List of 11
## .. .. .. ..$ hyperid : num 103008
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta8"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b8"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[8] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[8] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta9 :List of 11
## .. .. .. ..$ hyperid : num 103009
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta9"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b9"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[9] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[9] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta10 :List of 11
## .. .. .. ..$ hyperid : num 103010
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta10"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b10"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[10] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[10] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta11 :List of 11
## .. .. .. ..$ hyperid : num 103011
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta11"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b11"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[11] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[11] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta12 :List of 11
## .. .. .. ..$ hyperid : num 103012
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta12"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b12"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[12] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[12] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta13 :List of 11
## .. .. .. ..$ hyperid : num 103013
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta13"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b13"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[13] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[13] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta14 :List of 11
## .. .. .. ..$ hyperid : num 103014
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta14"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b14"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[14] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[14] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta15 :List of 11
## .. .. .. ..$ hyperid : num 103015
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta15"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b15"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[15] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[15] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta16 :List of 11
## .. .. .. ..$ hyperid : num 103016
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta16"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b16"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[16] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[16] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta17 :List of 11
## .. .. .. ..$ hyperid : num 103017
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta17"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b17"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[17] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[17] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta18 :List of 11
## .. .. .. ..$ hyperid : num 103018
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta18"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b18"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[18] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[18] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta19 :List of 11
## .. .. .. ..$ hyperid : num 103019
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta19"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b19"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[19] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[19] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta20 :List of 11
## .. .. .. ..$ hyperid : num 103020
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta20"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b20"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[20] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[20] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta21 :List of 11
## .. .. .. ..$ hyperid : num 103021
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta21"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b21"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[21] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[21] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta22 :List of 11
## .. .. .. ..$ hyperid : num 103022
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta22"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b22"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[22] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[22] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta23 :List of 11
## .. .. .. ..$ hyperid : num 103023
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta23"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b23"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[23] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[23] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta24 :List of 11
## .. .. .. ..$ hyperid : num 103024
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta24"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b24"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[24] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[24] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta25 :List of 11
## .. .. .. ..$ hyperid : num 103025
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta25"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b25"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[25] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[25] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta26 :List of 11
## .. .. .. ..$ hyperid : num 103026
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta26"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b26"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[26] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[26] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta27 :List of 11
## .. .. .. ..$ hyperid : num 103027
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta27"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b27"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[27] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[27] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta28 :List of 11
## .. .. .. ..$ hyperid : num 103028
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta28"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b28"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[28] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[28] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta29 :List of 11
## .. .. .. ..$ hyperid : num 103029
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta29"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b29"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[29] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[29] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta30 :List of 11
## .. .. .. ..$ hyperid : num 103030
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta30"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b30"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[30] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[30] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta31 :List of 11
## .. .. .. ..$ hyperid : num 103031
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta31"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b31"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[31] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[31] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta32 :List of 11
## .. .. .. ..$ hyperid : num 103032
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta32"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b32"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[32] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[32] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta33 :List of 11
## .. .. .. ..$ hyperid : num 103033
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta33"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b33"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[33] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[33] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta34 :List of 11
## .. .. .. ..$ hyperid : num 103034
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta34"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b34"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[34] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[34] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta35 :List of 11
## .. .. .. ..$ hyperid : num 103035
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta35"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b35"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[35] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[35] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta36 :List of 11
## .. .. .. ..$ hyperid : num 103036
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta36"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b36"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[36] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[36] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta37 :List of 11
## .. .. .. ..$ hyperid : num 103037
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta37"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b37"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[37] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[37] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta38 :List of 11
## .. .. .. ..$ hyperid : num 103038
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta38"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b38"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[38] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[38] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta39 :List of 11
## .. .. .. ..$ hyperid : num 103039
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta39"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b39"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[39] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[39] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta40 :List of 11
## .. .. .. ..$ hyperid : num 103040
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta40"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b40"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[40] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[40] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta41 :List of 11
## .. .. .. ..$ hyperid : num 103041
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta41"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b41"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[41] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[41] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta42 :List of 11
## .. .. .. ..$ hyperid : num 103042
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta42"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b42"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[42] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[42] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta43 :List of 11
## .. .. .. ..$ hyperid : num 103043
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta43"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b43"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[43] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[43] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta44 :List of 11
## .. .. .. ..$ hyperid : num 103044
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta44"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b44"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[44] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[44] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta45 :List of 11
## .. .. .. ..$ hyperid : num 103045
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta45"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b45"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[45] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[45] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta46 :List of 11
## .. .. .. ..$ hyperid : num 103046
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta46"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b46"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[46] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[46] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta47 :List of 11
## .. .. .. ..$ hyperid : num 103047
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta47"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b47"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[47] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[47] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta48 :List of 11
## .. .. .. ..$ hyperid : num 103048
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta48"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b48"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[48] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[48] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta49 :List of 11
## .. .. .. ..$ hyperid : num 103049
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta49"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b49"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[49] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[49] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta50 :List of 11
## .. .. .. ..$ hyperid : num 103050
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta50"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b50"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[50] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[50] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta51 :List of 11
## .. .. .. ..$ hyperid : num 103051
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta51"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b51"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[51] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[51] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta52 :List of 11
## .. .. .. ..$ hyperid : num 103052
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta52"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b52"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[52] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[52] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta53 :List of 11
## .. .. .. ..$ hyperid : num 103053
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta53"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b53"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[53] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[53] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta54 :List of 11
## .. .. .. ..$ hyperid : num 103054
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta54"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b54"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[54] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[54] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta55 :List of 11
## .. .. .. ..$ hyperid : num 103055
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta55"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b55"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[55] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[55] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta56 :List of 11
## .. .. .. ..$ hyperid : num 103056
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta56"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b56"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[56] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[56] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta57 :List of 11
## .. .. .. ..$ hyperid : num 103057
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta57"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b57"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[57] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[57] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta58 :List of 11
## .. .. .. ..$ hyperid : num 103058
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta58"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b58"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[58] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[58] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta59 :List of 11
## .. .. .. ..$ hyperid : num 103059
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta59"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b59"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[59] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[59] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta60 :List of 11
## .. .. .. ..$ hyperid : num 103060
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta60"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b60"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[60] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[60] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta61 :List of 11
## .. .. .. ..$ hyperid : num 103061
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta61"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b61"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[61] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[61] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta62 :List of 11
## .. .. .. ..$ hyperid : num 103062
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta62"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b62"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[62] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[62] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta63 :List of 11
## .. .. .. ..$ hyperid : num 103063
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta63"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b63"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[63] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[63] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta64 :List of 11
## .. .. .. ..$ hyperid : num 103064
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta64"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b64"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[64] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[64] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta65 :List of 11
## .. .. .. ..$ hyperid : num 103065
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta65"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b65"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[65] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[65] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta66 :List of 11
## .. .. .. ..$ hyperid : num 103066
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta66"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b66"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[66] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[66] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta67 :List of 11
## .. .. .. ..$ hyperid : num 103067
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta67"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b67"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[67] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[67] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta68 :List of 11
## .. .. .. ..$ hyperid : num 103068
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta68"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b68"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[68] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[68] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta69 :List of 11
## .. .. .. ..$ hyperid : num 103069
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta69"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b69"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[69] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[69] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta70 :List of 11
## .. .. .. ..$ hyperid : num 103070
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta70"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b70"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[70] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[70] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta71 :List of 11
## .. .. .. ..$ hyperid : num 103071
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta71"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b71"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[71] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[71] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta72 :List of 11
## .. .. .. ..$ hyperid : num 103072
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta72"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b72"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[72] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[72] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta73 :List of 11
## .. .. .. ..$ hyperid : num 103073
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta73"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b73"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[73] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[73] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta74 :List of 11
## .. .. .. ..$ hyperid : num 103074
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta74"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b74"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[74] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[74] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta75 :List of 11
## .. .. .. ..$ hyperid : num 103075
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta75"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b75"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[75] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[75] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta76 :List of 11
## .. .. .. ..$ hyperid : num 103076
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta76"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b76"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[76] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[76] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta77 :List of 11
## .. .. .. ..$ hyperid : num 103077
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta77"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b77"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[77] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[77] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta78 :List of 11
## .. .. .. ..$ hyperid : num 103078
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta78"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b78"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[78] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[78] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta79 :List of 11
## .. .. .. ..$ hyperid : num 103079
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta79"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b79"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[79] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[79] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta80 :List of 11
## .. .. .. ..$ hyperid : num 103080
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta80"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b80"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[80] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[80] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta81 :List of 11
## .. .. .. ..$ hyperid : num 103081
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta81"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b81"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[81] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[81] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta82 :List of 11
## .. .. .. ..$ hyperid : num 103082
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta82"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b82"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[82] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[82] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta83 :List of 11
## .. .. .. ..$ hyperid : num 103083
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta83"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b83"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[83] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[83] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta84 :List of 11
## .. .. .. ..$ hyperid : num 103084
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta84"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b84"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[84] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[84] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta85 :List of 11
## .. .. .. ..$ hyperid : num 103085
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta85"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b85"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[85] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[85] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta86 :List of 11
## .. .. .. ..$ hyperid : num 103086
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta86"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b86"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[86] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[86] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta87 :List of 11
## .. .. .. ..$ hyperid : num 103087
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta87"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b87"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[87] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[87] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta88 :List of 11
## .. .. .. ..$ hyperid : num 103088
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta88"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b88"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[88] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[88] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta89 :List of 11
## .. .. .. ..$ hyperid : num 103089
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta89"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b89"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[89] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[89] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta90 :List of 11
## .. .. .. ..$ hyperid : num 103090
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta90"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b90"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[90] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[90] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta91 :List of 11
## .. .. .. ..$ hyperid : num 103091
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta91"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b91"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[91] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[91] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta92 :List of 11
## .. .. .. ..$ hyperid : num 103092
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta92"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b92"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[92] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[92] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta93 :List of 11
## .. .. .. ..$ hyperid : num 103093
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta93"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b93"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[93] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[93] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta94 :List of 11
## .. .. .. ..$ hyperid : num 103094
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta94"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b94"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[94] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[94] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta95 :List of 11
## .. .. .. ..$ hyperid : num 103095
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta95"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b95"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[95] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[95] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta96 :List of 11
## .. .. .. ..$ hyperid : num 103096
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta96"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b96"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[96] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[96] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta97 :List of 11
## .. .. .. ..$ hyperid : num 103097
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta97"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b97"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[97] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[97] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta98 :List of 11
## .. .. .. ..$ hyperid : num 103098
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta98"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b98"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[98] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[98] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. ..$ theta99 :List of 11
## .. .. .. ..$ hyperid : num 103099
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ name : chr "beta99"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ short.name : chr "b99"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name : chr "beta[99] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ output.name.intern: chr "beta[99] for lp_scale"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ initial : num 1
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ fixed : logi FALSE
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ prior : chr "normal"
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ param : num [1:2] 1 10
## .. .. .. .. ..- attr(*, "inla.read.only")= logi FALSE
## .. .. .. ..$ to.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. ..$ from.theta :function (x)
## .. .. .. .. ..- attr(*, "inla.read.only")= logi TRUE
## .. .. .. [list output truncated]
## .. ..- attr(*, "class")= chr [1:2] "ctrl_lp_scale" "inla_ctrl_object"
## ..$ control.pardiso :List of 4
## .. ..$ verbose : logi FALSE
## .. ..$ debug : logi FALSE
## .. ..$ parallel.reordering: logi TRUE
## .. ..$ nrhs : num -1
## .. ..- attr(*, "class")= chr [1:2] "ctrl_pardiso" "inla_ctrl_object"
## ..$ only.hyperparam : logi FALSE
## ..$ inla.call : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/inla.mkl.run"
## ..$ num.threads : chr "24:1"
## ..$ keep : logi FALSE
## ..$ silent : logi TRUE
## ..$ inla.mode : chr "compact"
## ..$ safe : logi TRUE
## ..$ debug : logi FALSE
## ..$ .parent.frame :<environment: R_GlobalEnv>
## $ call : chr [1:14] "inla.core(formula = formula, family = family, contrasts = contrasts, " " data = data, quantiles = quantiles, E = E, offset = offset, " " scale = scale, weights = weights, Ntrials = Ntrials, strata = strata, " " lp.scale = lp.scale, link.covariates = link.covariates, verbose = verbose, " ...
## $ model.matrix :Formal class 'dsparseModelMatrix' [package "MatrixModels"] with 8 slots
## .. ..@ i : int(0)
## .. ..@ p : int 0
## .. ..@ Dim : int [1:2] 28678 0
## .. ..@ Dimnames :List of 2
## .. .. ..$ : chr [1:28678] "1" "2" "3" "4" ...
## .. .. ..$ : NULL
## .. ..@ x : num(0)
## .. ..@ factors : list()
## .. ..@ assign : int(0)
## .. ..@ contrasts: Named list()
## $ bru_iinla :List of 5
## ..$ log :Class 'bru_log' hidden list of 2
## .. ..$ log : chr [1:7] "2024-04-16 20:34:37.577979: iinla: Evaluate component inputs" "2024-04-16 20:34:37.641982: iinla: Evaluate component linearisations" "2024-04-16 20:34:41.113134: iinla: Evaluate component simplifications" "2024-04-16 20:34:44.220618: iinla: Evaluate predictor linearisation" ...
## .. ..$ bookmarks: Named int 0
## .. .. ..- attr(*, "names")= chr "iinla"
## ..$ states :List of 1
## .. ..$ :List of 3
## .. .. ..$ Intercept : num 0
## .. .. ..$ SpeedLimit: num 0
## .. .. ..$ field : num [1:28676] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ inla_stack:List of 3
## .. ..$ A :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. ..@ i : int [1:58122] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. ..@ p : int [1:28679] 0 14534 29068 29072 29079 29079 29079 29079 29080 29081 ...
## .. .. .. ..@ Dim : int [1:2] 14534 28678
## .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. ..$ : NULL
## .. .. .. .. ..$ : NULL
## .. .. .. ..@ x : num [1:58122] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..@ factors : list()
## .. ..$ data :List of 5
## .. .. ..$ data :'data.frame': 14534 obs. of 6 variables:
## .. .. .. ..$ BRU.response: num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ BRU.E : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.Ntrials : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.weights : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.scale : num [1:14534] 1 1 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ BRU.offset : num [1:14534] 0 0 0 0 0 0 0 0 0 0 ...
## .. .. ..$ nrow : int 14534
## .. .. ..$ ncol : Named int [1:6] 1 1 1 1 1 1
## .. .. .. ..- attr(*, "names")= chr [1:6] "BRU.response" "BRU.E" "BRU.Ntrials" "BRU.weights" ...
## .. .. ..$ names:List of 6
## .. .. .. ..$ BRU.response: chr "BRU.response"
## .. .. .. ..$ BRU.E : chr "BRU.E"
## .. .. .. ..$ BRU.Ntrials : chr "BRU.Ntrials"
## .. .. .. ..$ BRU.weights : chr "BRU.weights"
## .. .. .. ..$ BRU.scale : chr "BRU.scale"
## .. .. .. ..$ BRU.offset : chr "BRU.offset"
## .. .. ..$ index:List of 1
## .. .. .. ..$ : num [1:14534] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. ..- attr(*, "class")= chr "inla.data.stack.info"
## .. ..$ effects:List of 5
## .. .. ..$ data :'data.frame': 28678 obs. of 9 variables:
## .. .. .. ..$ Intercept : num [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ Intercept.group : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ Intercept.repl : int [1:28678] 1 NA NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit : num [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit.group: int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ SpeedLimit.repl : int [1:28678] NA 1 NA NA NA NA NA NA NA NA ...
## .. .. .. ..$ field : int [1:28678] NA NA 1 2 3 4 5 6 7 8 ...
## .. .. .. ..$ field.group : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. .. .. ..$ field.repl : int [1:28678] NA NA 1 1 1 1 1 1 1 1 ...
## .. .. ..$ nrow : int 28678
## .. .. ..$ ncol : Named int [1:9] 1 1 1 1 1 1 1 1 1
## .. .. .. ..- attr(*, "names")= chr [1:9] "Intercept" "Intercept.group" "Intercept.repl" "SpeedLimit" ...
## .. .. ..$ names:List of 9
## .. .. .. ..$ Intercept : chr "Intercept"
## .. .. .. ..$ Intercept.group : chr "Intercept.group"
## .. .. .. ..$ Intercept.repl : chr "Intercept.repl"
## .. .. .. ..$ SpeedLimit : chr "SpeedLimit"
## .. .. .. ..$ SpeedLimit.group: chr "SpeedLimit.group"
## .. .. .. ..$ SpeedLimit.repl : chr "SpeedLimit.repl"
## .. .. .. ..$ field : chr "field"
## .. .. .. ..$ field.group : chr "field.group"
## .. .. .. ..$ field.repl : chr "field.repl"
## .. .. ..$ index:List of 3
## .. .. .. ..$ : int 1
## .. .. .. ..$ : int 2
## .. .. .. ..$ : int [1:28676] 3 4 5 6 7 8 9 10 11 12 ...
## .. .. ..- attr(*, "class")= chr "inla.data.stack.info"
## .. ..- attr(*, "class")= chr "inla.data.stack"
## ..$ track :'data.frame': 28684 obs. of 6 variables:
## .. ..$ effect : chr [1:28684] "Intercept" "SpeedLimit" "field" "field" ...
## .. ..$ index : num [1:28684] 1 1 1 2 3 4 5 6 7 8 ...
## .. ..$ iteration : num [1:28684] 1 1 1 1 1 1 1 1 1 1 ...
## .. ..$ mode : num [1:28684] 20.788 2.932 -2.608 -3.23 -0.681 ...
## .. ..$ sd : num [1:28684] 0.392 0.271 5.072 3.551 6.941 ...
## .. ..$ new_linearisation: num [1:28684] 0 0 0 0 0 0 0 0 0 0 ...
## ..$ timings :'data.frame': 2 obs. of 3 variables:
## .. ..$ Task : chr [1:2] "Preprocess" "Run inla()"
## .. ..$ Iteration: num [1:2] 1 1
## .. ..$ Time : 'difftime' num [1:2] 23.1113114356995 18.9593479633331
## .. .. ..- attr(*, "units")= chr "secs"
## $ bru_timings :'data.frame': 3 obs. of 3 variables:
## ..$ Task : chr [1:3] "Preprocess" "Preprocess" "Run inla()"
## ..$ Iteration: num [1:3] 0 1 1
## ..$ Time : 'difftime' num [1:3] 0.0564517974853516 23.1113114356995 18.9593479633331
## .. ..- attr(*, "units")= chr "secs"
## $ bru_info :List of 6
## ..$ method : chr "bru"
## ..$ model :List of 2
## .. ..$ effects:List of 3
## .. .. ..$ Intercept :List of 12
## .. .. .. ..$ label : chr "Intercept"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : num 1
## .. .. .. .. .. ..$ label : chr "Intercept"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper : list()
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "linear"
## .. .. .. .. ..$ type : chr "linear"
## .. .. .. .. ..$ n : int 1
## .. .. .. .. ..$ values : num 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "Intercept.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "Intercept.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f038106378>
## .. .. .. ..$ fcall : language "f"(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main : list()
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 1
## .. .. .. .. .. .. ..$ n_inla : num 1
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 1 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..$ SpeedLimit:List of 12
## .. .. .. ..$ label : chr "SpeedLimit"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(SpeedLimit, model = BRU_SpeedLimit_main_model, ngroup = 1, nrep = 1, values = BRU_SpeedLimit_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : symbol SpeedLimit
## .. .. .. .. .. ..$ label : chr "SpeedLimit"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper : list()
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "linear"
## .. .. .. .. ..$ type : chr "linear"
## .. .. .. .. ..$ n : int 1
## .. .. .. .. ..$ values : num 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "SpeedLimit.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "SpeedLimit.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f0380e55c8>
## .. .. .. ..$ fcall : language "f"(SpeedLimit, model = BRU_SpeedLimit_main_model, ngroup = 1, nrep = 1, values = BRU_SpeedLimit_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main : list()
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_linear" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int 1
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: num 1
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : num 1
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int 1
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 1
## .. .. .. .. .. .. ..$ n_inla : num 1
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 1 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..$ field :List of 12
## .. .. .. ..$ label : chr "field"
## .. .. .. ..$ inla.formula:Class 'formula' language ~. + f(field, model = BRU_field_main_model, replicate = field.repl, ngroup = 1, nrep = 4L, values = BRU_field_values)
## .. .. .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. .. .. ..$ main :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : symbol loc
## .. .. .. .. .. ..$ label : chr "field"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ model:List of 21
## .. .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. .. .. ..$ alpha : int 1
## .. .. .. .. .. .. .. .. .. ..$ doubles :List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. ..$ characters:List of 3
## .. .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. .. ..$ matrices :List of 3
## .. .. .. .. .. .. .. .. .. .. ..$ B_tau : num [1:35847] 7169 5 -0.693 -1 0.5 ...
## .. .. .. .. .. .. .. .. .. .. ..$ B_kappa : num [1:35847] 7169 5 0.693 0 -1 ...
## .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:18] 4 4 0.1 0 0 0 0 0.1 0 0 ...
## .. .. .. .. .. .. .. .. .. ..$ smatrices :List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ C: num [1:21510] 7169 7169 7169 0 1 ...
## .. .. .. .. .. .. .. .. .. .. ..$ G: num [1:74640] 7169 7169 24879 0 1 ...
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. ..$ theta.prior.mean : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. .. ..$ theta.prior.prec : num [1:4, 1:4] 0.1 0 0 0 0 0.1 0 0 0 0 ...
## .. .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. ..$ stationary : logi FALSE
## .. .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_inla_rspde" "bru_mapper" "list"
## .. .. .. .. ..$ model :List of 21
## .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. .. ..$ alpha : int 1
## .. .. .. .. .. .. .. .. ..$ doubles :List of 2
## .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. ..$ characters:List of 3
## .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. ..$ matrices :List of 3
## .. .. .. .. .. .. .. .. .. ..$ B_tau : num [1:35847] 7169 5 -0.693 -1 0.5 ...
## .. .. .. .. .. .. .. .. .. ..$ B_kappa : num [1:35847] 7169 5 0.693 0 -1 ...
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:18] 4 4 0.1 0 0 0 0 0.1 0 0 ...
## .. .. .. .. .. .. .. .. ..$ smatrices :List of 2
## .. .. .. .. .. .. .. .. .. ..$ C: num [1:21510] 7169 7169 7169 0 1 ...
## .. .. .. .. .. .. .. .. .. ..$ G: num [1:74640] 7169 7169 24879 0 1 ...
## .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. ..$ theta.prior.mean : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. ..$ theta.prior.prec : num [1:4, 1:4] 0.1 0 0 0 0 0.1 0 0 0 0 ...
## .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. ..$ stationary : logi FALSE
## .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. ..$ type : chr "cgeneric"
## .. .. .. .. ..$ n : num 7169
## .. .. .. .. ..$ values : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ group :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : int 1
## .. .. .. .. .. ..$ label : chr "field.group"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 1
## .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "exchangeable"
## .. .. .. .. ..$ type : chr "exchangeable"
## .. .. .. .. ..$ n : num 1
## .. .. .. .. ..$ values : int 1
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ replicate :List of 8
## .. .. .. .. ..$ input :List of 4
## .. .. .. .. .. ..$ input : language data_rspde_bru_nonstat[["repl"]]
## .. .. .. .. .. ..$ label : chr "field.repl"
## .. .. .. .. .. ..$ layer : NULL
## .. .. .. .. .. ..$ selector: NULL
## .. .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_input" "list"
## .. .. .. .. ..$ mapper :List of 4
## .. .. .. .. .. ..$ levels : chr [1:4] "1" "2" "3" "4"
## .. .. .. .. .. ..$ factor_mapping: chr "full"
## .. .. .. .. .. ..$ indexed : logi TRUE
## .. .. .. .. .. ..$ n : int 4
## .. .. .. .. .. ..- attr(*, "class")= chr [1:4] "bru_mapper_factor_index" "bru_mapper_factor" "bru_mapper" "list"
## .. .. .. .. ..$ model : chr "iid"
## .. .. .. .. ..$ type : chr "iid"
## .. .. .. .. ..$ n : int 4
## .. .. .. .. ..$ values : int [1:4] 1 2 3 4
## .. .. .. .. ..$ season.length : NULL
## .. .. .. .. ..$ factor_mapping: NULL
## .. .. .. .. ..- attr(*, "class")= chr [1:2] "bru_subcomponent" "list"
## .. .. .. ..$ weights : NULL
## .. .. .. ..$ copy : NULL
## .. .. .. ..$ marginal : NULL
## .. .. .. ..$ env :<environment: R_GlobalEnv>
## .. .. .. ..$ env_extra :<environment: 0x57f0380c9b60>
## .. .. .. ..$ fcall : language "f"(field, model = BRU_field_main_model, replicate = field.repl, ngroup = 1, nrep = 4L, values = BRU_field_values)
## .. .. .. ..$ mapper :List of 6
## .. .. .. .. ..$ mappers :List of 2
## .. .. .. .. .. ..$ mapper:List of 9
## .. .. .. .. .. .. ..$ mappers :List of 3
## .. .. .. .. .. .. .. ..$ main :List of 1
## .. .. .. .. .. .. .. .. ..$ model:List of 21
## .. .. .. .. .. .. .. .. .. ..$ f :List of 3
## .. .. .. .. .. .. .. .. .. .. ..$ model : chr "cgeneric"
## .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. ..$ cgeneric:List of 5
## .. .. .. .. .. .. .. .. .. .. .. ..$ model: chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. .. .. .. .. ..$ shlib: chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. .. ..$ debug: logi FALSE
## .. .. .. .. .. .. .. .. .. .. .. ..$ data :List of 5
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ ints :List of 5
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ n : int 7169
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ debug : int 0
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_i: int [1:16024] 0 0 0 1 1 1 1 1 1 2 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ graph_opt_j: int [1:16024] 0 1 985 1 1700 5207 5364 6858 7041 2 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ alpha : int 1
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ doubles :List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean: num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ characters:List of 3
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ model : chr "inla_cgeneric_rspde_nonstat_int_model"
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ shlib : chr "/home/rierasl/R/x86_64-pc-linux-gnu-library/4.3/INLA/bin/linux/64bit/external/rSPDE/librSPDE.so"
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ prior.theta.param: chr "theta"
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ matrices :List of 3
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ B_tau : num [1:35847] 7169 5 -0.693 -1 0.5 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ B_kappa : num [1:35847] 7169 5 0.693 0 -1 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec: num [1:18] 4 4 0.1 0 0 0 0 0.1 0 0 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..$ smatrices :List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ C: num [1:21510] 7169 7169 7169 0 1 ...
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ G: num [1:74640] 7169 7169 24879 0 1 ...
## .. .. .. .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr "inla.cgeneric"
## .. .. .. .. .. .. .. .. .. ..$ cgeneric_type : chr "int_alpha"
## .. .. .. .. .. .. .. .. .. ..$ nu : num 0.5
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.mean : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. ..$ prior.nu :List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ loglocation: num -5e-06
## .. .. .. .. .. .. .. .. .. .. ..$ mean : num 1
## .. .. .. .. .. .. .. .. .. .. ..$ prec : num 3
## .. .. .. .. .. .. .. .. .. .. ..$ logscale : num 1
## .. .. .. .. .. .. .. .. .. ..$ theta.prior.prec : num [1:4, 1:4] 0.1 0 0 0 0 0.1 0 0 0 0 ...
## .. .. .. .. .. .. .. .. .. ..$ start.nu : num 0.5
## .. .. .. .. .. .. .. .. .. ..$ integer.nu : logi TRUE
## .. .. .. .. .. .. .. .. .. ..$ start.theta : num [1:4] 2.85 -1.1 0 0
## .. .. .. .. .. .. .. .. .. ..$ stationary : logi FALSE
## .. .. .. .. .. .. .. .. .. ..$ rspde.order : num 2
## .. .. .. .. .. .. .. .. .. ..$ dim : num 1
## .. .. .. .. .. .. .. .. .. ..$ est_nu : logi FALSE
## .. .. .. .. .. .. .. .. .. ..$ nu.upper.bound : num 2
## .. .. .. .. .. .. .. .. .. ..$ prior.nu.dist : chr "lognormal"
## .. .. .. .. .. .. .. .. .. ..$ debug : logi FALSE
## .. .. .. .. .. .. .. .. .. ..$ type.rational.approx: chr "chebfun"
## .. .. .. .. .. .. .. .. .. ..$ mesh :Classes 'metric_graph', 'R6' <metric_graph>
## Public:
## add_mesh_observations: function (data = NULL, group = NULL)
## add_observations: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## build_mesh: function (h = NULL, n = NULL, continuous = TRUE, continuous.outs = FALSE,
## buildC: function (alpha = 2, edge_constraint = FALSE)
## buildDirectionalConstraints: function (alpha = 1)
## C: NULL
## characteristics: list
## check_distance_consistency: function ()
## check_euclidean: function ()
## clear_observations: function ()
## clone: function (deep = FALSE)
## CoB: NULL
## compute_characteristics: function (check_euclidean = FALSE)
## compute_fem: function (petrov = FALSE)
## compute_geodist: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_geodist_mesh: function ()
## compute_geodist_PtE: function (PtE, normalized = TRUE, include_vertices = TRUE, verbose = 0)
## compute_laplacian: function (full = FALSE, obs = TRUE, group = NULL, verbose = 0)
## compute_PtE_edges: function ()
## compute_resdist: function (full = FALSE, obs = TRUE, group = NULL, check_euclidean = FALSE,
## compute_resdist_mesh: function ()
## compute_resdist_PtE: function (PtE, normalized = TRUE, include_vertices = FALSE, check_euclidean = FALSE,
## coordinates: function (PtE = NULL, XY = NULL, normalized = TRUE)
## drop_na: function (...)
## E: 1 3 3 6 4 7 9 11 13 14 15 16 18 19 20 21 23 25 27 29 31 ...
## edge_lengths: 0.0363234139144278 0.01586106867077 0.027923568765887 0. ...
## edges: metric_graph_edges
## edgeweight_to_data: function (loc = NULL, mesh = FALSE, data_loc = FALSE, weight_col = NULL,
## fem_basis: function (PtE)
## filter: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## geo_dist: list
## get_data: function (group = NULL, tibble = TRUE, drop_na = FALSE, drop_all_na = TRUE)
## get_degrees: function (which = "degree")
## get_edge_lengths: function (unit = NULL)
## get_edge_weights: function (data.frame = FALSE, tibble = TRUE)
## get_groups: function (get_cols = FALSE)
## get_initial_graph: function ()
## get_locations: function ()
## get_mesh_locations: function (bru = FALSE, loc = NULL, normalized = TRUE)
## get_PtE: function ()
## get_vertices_incomp_dir: function ()
## initialize: function (edges = NULL, V = NULL, E = NULL, vertex_unit = NULL,
## is_tree: function ()
## Laplacian: NULL
## mesh: list
## mesh_A: function (PtE)
## mutate: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## nE: 6827
## nV: 4017
## observation_to_vertex: function (tolerance = 1e-15, mesh_warning = TRUE)
## plot: function (data = NULL, newdata = NULL, group = 1, plotly = FALSE,
## plot_connections: function ()
## plot_function: function (data = NULL, newdata = NULL, group = 1, X = NULL, plotly = FALSE,
## plot_movie: function (X, plotly = TRUE, vertex_size = 5, vertex_color = "black",
## print: function ()
## process_data: function (data = NULL, edge_number = "edge_number", distance_on_edge = "distance_on_edge",
## prune_vertices: function (check_weights = TRUE, verbose = FALSE)
## PtV: NULL
## res_dist: NULL
## select: function (..., .drop_na = FALSE, .drop_all_na = TRUE)
## set_edge_weights: function (weights = rep(1, self$nE), kirchhoff_weights = NULL)
## summarise: function (..., .include_graph_groups = FALSE, .groups = NULL,
## summary: function (messages = FALSE, compute_characteristics = TRUE, check_euclidean = TRUE,
## V: -122.41277 -122.41249 -122.40376 -122.40358 -122.40379 - ...
## vertices: metric_graph_vertices
## VtEfirst: function ()
## Private:
## A: function (group = NULL, obs_to_vert = FALSE, drop_na = FALSE,
## add_vertices: function (PtE, tolerance = 1e-10, verbose)
## addinfo: FALSE
## clear_initial_info: function ()
## compute_degrees: function ()
## compute_laplacian_PtE: function (PtE, normalized = TRUE, verbose = verbose)
## compute_lengths: function (longlat, unit, crs, proj4string, which_longlat, vertex_unit,
## connected: TRUE
## coordinates_multiple_snaps: function (XY, tolerance, verbose = verbose, crs, proj4string,
## create_update_vertices: function ()
## crs: crs
## data: metric_graph_data, list
## edge_weights: tbl_df, tbl, data.frame
## find_edge_edge_points: function (tol, verbose, crs, proj4string, longlat, fact, which_longlat)
## find_mesh_bc: function ()
## get_edge_weights_internal: function (data.frame = FALSE)
## group_col: .group
## initial_edges_added: NULL
## initial_graph: metric_graph, R6
## kirchhoff_weights: NULL
## length_unit: km
## line_to_vertex: function (tolerance = 0, longlat = FALSE, fact, verbose, crs,
## longlat: TRUE
## merge_close_vertices: function (tolerance, fact)
## merge.all.deg2: function ()
## mesh_merge_deg2: function ()
## mesh_merge_outs: function ()
## move_V_first: function ()
## plot_2d: function (line_width = 0.1, marker_size = 1, vertex_color = "black",
## plot_3d: function (line_width = 1, marker_size = 1, vertex_color = "rgb(0,0,0)",
## proj4string: NULL
## prune_warning: FALSE
## pruned: FALSE
## PtE_to_mesh: function (PtE)
## remove_circles: function (threshold, verbose, longlat, unit, crs, proj4string,
## remove.first.deg2: function (res)
## set_first_weights: function (weights = rep(1, self$nE))
## set_petrov_matrices: function ()
## split_edge: function (Ei, t, tolerance = 0)
## temp_PtE: NULL
## tolerance: list
## transform: FALSE
## vertex_unit: degrees
## which_longlat: sf
## .. .. .. .. .. .. .. .. .. ..$ fem_mesh :List of 4
## .. .. .. .. .. .. .. .. .. .. ..$ c0:Formal class 'dgTMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ j : int [1:7169] 0 1 2 3 4 5 6 7 8 9 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:7169] 0.0797 0.1564 0.1117 0.0493 0.0614 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g1:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:24879] 0 1 985 0 1 1700 5207 5364 6858 7041 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 3 10 16 20 23 27 36 44 50 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:24879] 101.1 -55.1 -46.1 -55.1 216.4 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g2:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:56007] 0 1 985 986 1700 4722 5207 5364 6240 6858 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 11 22 34 43 52 61 76 89 99 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:56007] 172097 -145986 -232979 119006 15770 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. .. ..$ g3:Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ i : int [1:96755] 0 1 230 984 985 986 1700 1701 2280 2455 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ p : int [1:7170] 0 17 35 57 76 91 103 126 150 166 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dim : int [1:2] 7169 7169
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ Dimnames:List of 2
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. .. ..$ : NULL
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ x : num [1:96755] 3.94e+08 -3.74e+08 -2.65e+07 -9.14e+07 -1.47e+09 ...
## .. .. .. .. .. .. .. .. .. .. .. .. ..@ factors : list()
## .. .. .. .. .. .. .. .. .. ..$ parameterization : chr "matern"
## .. .. .. .. .. .. .. .. .. ..$ n.spde : int 7169
## .. .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "rspde_metric_graph" "inla_rspde" "inla.cgeneric"
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_inla_rspde" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ group :List of 1
## .. .. .. .. .. .. .. .. ..$ n: num 1
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_index" "bru_mapper" "list"
## .. .. .. .. .. .. .. ..$ replicate:List of 4
## .. .. .. .. .. .. .. .. ..$ levels : chr [1:4] "1" "2" "3" "4"
## .. .. .. .. .. .. .. .. ..$ factor_mapping: chr "full"
## .. .. .. .. .. .. .. .. ..$ indexed : logi TRUE
## .. .. .. .. .. .. .. .. ..$ n : int 4
## .. .. .. .. .. .. .. .. ..- attr(*, "class")= chr [1:4] "bru_mapper_factor_index" "bru_mapper_factor" "bru_mapper" "list"
## .. .. .. .. .. .. ..$ n_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 7169
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: int 4
## .. .. .. .. .. .. ..$ n_inla_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : num 7169
## .. .. .. .. .. .. .. ..$ group : num 1
## .. .. .. .. .. .. .. ..$ replicate: int 4
## .. .. .. .. .. .. ..$ values_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int [1:4] 1 2 3 4
## .. .. .. .. .. .. ..$ values_inla_multi:List of 3
## .. .. .. .. .. .. .. ..$ main : int [1:7169] 1 2 3 4 5 6 7 8 9 10 ...
## .. .. .. .. .. .. .. ..$ group : int 1
## .. .. .. .. .. .. .. ..$ replicate: int [1:4] 1 2 3 4
## .. .. .. .. .. .. ..$ is_linear_multi :List of 3
## .. .. .. .. .. .. .. ..$ main : logi TRUE
## .. .. .. .. .. .. .. ..$ group : logi TRUE
## .. .. .. .. .. .. .. ..$ replicate: logi TRUE
## .. .. .. .. .. .. ..$ n : num 28676
## .. .. .. .. .. .. ..$ n_inla : num 28676
## .. .. .. .. .. .. ..$ is_linear : logi TRUE
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_multi" "bru_mapper" "list"
## .. .. .. .. .. ..$ scale : list()
## .. .. .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_scale" "bru_mapper" "list"
## .. .. .. .. ..$ : Named logi [1:2] TRUE TRUE
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ is_linear: logi TRUE
## .. .. .. .. ..$ n_multi : Named int [1:2] 28676 NA
## .. .. .. .. .. ..- attr(*, "names")= chr [1:2] "mapper" "scale"
## .. .. .. .. ..$ n : num 28676
## .. .. .. .. ..$ names : chr [1:2] "mapper" "scale"
## .. .. .. .. ..- attr(*, "class")= chr [1:3] "bru_mapper_pipe" "bru_mapper" "list"
## .. .. .. ..- attr(*, "class")= chr [1:2] "component" "list"
## .. .. ..- attr(*, "class")= chr [1:2] "component_list" "list"
## .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. ..$ formula:Class 'formula' language BRU_response ~ f(Intercept, model = BRU_Intercept_main_model, ngroup = 1, nrep = 1, values = BRU_Intercept_v| __truncated__ ...
## .. .. .. ..- attr(*, ".Environment")=<environment: R_GlobalEnv>
## .. ..- attr(*, "class")= chr [1:2] "bru_model" "list"
## ..$ lhoods :List of 1
## .. ..$ :List of 17
## .. .. ..$ family : chr "gaussian"
## .. .. ..$ formula :Class 'formula' language speed ~ .
## .. .. .. .. ..- attr(*, ".Environment")=<environment: 0x57f038532a48>
## .. .. ..$ response_data :List of 4
## .. .. .. ..$ BRU_response: num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ BRU_E : num 1
## .. .. .. ..$ BRU_Ntrials : num 1
## .. .. .. ..$ BRU_scale : num 1
## .. .. ..$ data :List of 8
## .. .. .. ..$ speed : num [1:14534] 0 12.9 24.1 32.2 0 ...
## .. .. .. ..$ SpeedLimit : num [1:14534] -0.101 -0.617 -0.617 -0.617 -0.927 ...
## .. .. .. ..$ .coord_x : num [1:14534] -122 -122 -122 -122 -122 ...
## .. .. .. ..$ .coord_y : num [1:14534] 37.8 37.8 37.8 37.8 37.8 ...
## .. .. .. ..$ .edge_number : num [1:14534] 1 4 6 6 9 14 14 14 18 20 ...
## .. .. .. ..$ .distance_on_edge: num [1:14534] 0.437 0.144 0.252 0.658 0.601 ...
## .. .. .. ..$ .group : chr [1:14534] "1" "1" "1" "1" ...
## .. .. .. ..$ loc : num [1:14534, 1:2] 1 4 6 6 9 14 14 14 18 20 ...
## .. .. .. ..- attr(*, "class")= chr [1:2] "metric_graph_data" "list"
## .. .. ..$ E : num 1
## .. .. ..$ Ntrials : num 1
## .. .. ..$ weights : num 1
## .. .. ..$ scale : num 1
## .. .. ..$ samplers : NULL
## .. .. ..$ linear : logi TRUE
## .. .. ..$ expr : NULL
## .. .. ..$ response : chr "BRU_response"
## .. .. ..$ inla.family : chr "gaussian"
## .. .. ..$ domain : NULL
## .. .. ..$ used :List of 2
## .. .. .. ..$ effect: chr [1:3] "Intercept" "SpeedLimit" "field"
## .. .. .. ..$ latent: chr(0)
## .. .. .. ..- attr(*, "class")= chr "bru_used"
## .. .. ..$ allow_combine : logi TRUE
## .. .. ..$ control.family: NULL
## .. .. ..- attr(*, "class")= chr [1:2] "bru_like" "list"
## .. ..- attr(*, "class")= chr [1:2] "bru_like_list" "list"
## ..$ options :List of 14
## .. ..$ bru_verbose : num 0
## .. ..$ bru_verbose_store: num Inf
## .. ..$ bru_max_iter : num 1
## .. ..$ bru_run : logi TRUE
## .. ..$ bru_int_args :List of 3
## .. .. ..$ method: chr "stable"
## .. .. ..$ nsub1 : num 30
## .. .. ..$ nsub2 : num 9
## .. ..$ bru_method :List of 6
## .. .. ..$ taylor : chr "pandemic"
## .. .. ..$ search : chr "all"
## .. .. ..$ factor : num 1.62
## .. .. ..$ rel_tol : num 0.1
## .. .. ..$ max_step : num 2
## .. .. ..$ line_opt_method: chr "onestep"
## .. ..$ bru_compress_cp : logi TRUE
## .. ..$ bru_debug : logi FALSE
## .. ..$ E : num 1
## .. ..$ Ntrials : num 1
## .. ..$ control.compute :List of 3
## .. .. ..$ config: logi TRUE
## .. .. ..$ dic : logi TRUE
## .. .. ..$ waic : logi TRUE
## .. ..$ control.inla :List of 1
## .. .. ..$ int.strategy: chr "auto"
## .. ..$ control.fixed :List of 1
## .. .. ..$ expand.factor.strategy: chr "inla"
## .. ..$ verbose : logi FALSE
## .. ..- attr(*, "class")= chr [1:2] "bru_options" "list"
## ..$ inlabru_version: Named chr "2.10.1.9002"
## .. ..- attr(*, "names")= chr "version"
## ..$ INLA_version : Named chr "24.02.09"
## .. ..- attr(*, "names")= chr "version"
## ..- attr(*, "class")= chr [1:2] "bru_info" "list"
## - attr(*, "class")= chr [1:3] "bru" "iinla" "inla"nonstat.time.fin <- Sys.time()
print(nonstat.time.fin - nonstat.time.ini)## Time difference of 47.12938 secs
summary(rspde_fit_nonstat)## inlabru version: 2.10.1.9002
## INLA version: 24.02.09
## Components:
## Intercept: main = linear(1), group = exchangeable(1L), replicate = iid(1L)
## SpeedLimit: main = linear(SpeedLimit), group = exchangeable(1L), replicate = iid(1L)
## field: main = cgeneric(loc), group = exchangeable(1L), replicate = iid(data_rspde_bru_nonstat[["repl"]])
## Likelihoods:
## Family: 'gaussian'
## Data class: 'metric_graph_data', 'list'
## Predictor: speed ~ .
## Time used:
## Pre = 0.164, Running = 16.9, Post = 1.85, Total = 18.9
## Fixed effects:
## mean sd 0.025quant 0.5quant 0.975quant mode kld
## Intercept 20.795 0.392 20.028 20.792 21.574 20.792 0
## SpeedLimit 2.929 0.271 2.359 2.939 3.442 2.936 0
##
## Random effects:
## Name Model
## field CGeneric
##
## Model hyperparameters:
## mean sd 0.025quant 0.5quant
## Precision for the Gaussian observations 0.012 0.000 0.012 0.012
## Theta1 for field 2.995 0.127 2.750 2.993
## Theta2 for field -0.765 0.320 -1.380 -0.770
## Theta3 for field 0.369 0.159 0.057 0.369
## Theta4 for field 0.739 0.311 0.124 0.740
## 0.975quant mode
## Precision for the Gaussian observations 0.012 0.012
## Theta1 for field 3.249 2.987
## Theta2 for field -0.119 -0.794
## Theta3 for field 0.681 0.370
## Theta4 for field 1.349 0.743
##
## Deviance Information Criterion (DIC) ...............: 108523.17
## Deviance Information Criterion (DIC, saturated) ....: 17463.96
## Effective number of parameters .....................: 2938.48
##
## Watanabe-Akaike information criterion (WAIC) ...: 108687.68
## Effective number of parameters .................: 2602.19
##
## Marginal log-Likelihood: -55598.04
## is computed
## Posterior summaries for the linear predictor and the fitted values are computed
## (Posterior marginals needs also 'control.compute=list(return.marginals.predictor=TRUE)')
summary(rspde.result(rspde_fit_nonstat, "field", rspde_model_nonstat))## mean sd 0.025quant 0.5quant 0.975quant mode
## Theta1.matern 2.994880 0.126594 2.750120 2.993380 3.248550 2.986950
## Theta2.matern -0.765105 0.320292 -1.379590 -0.770465 -0.118589 -0.793769
## Theta3.matern 0.369151 0.158555 0.056758 0.369233 0.681067 0.369574
## Theta4.matern 0.738944 0.310948 0.124447 0.739739 1.348810 0.743058
save.image(here(paste0("Models_output/", rmarkdown::metadata$title, ".RData")))